Quantcast
Channel: Delphi Forum - Delphi Programming Kings of Code - All Forums
Viewing all articles
Browse latest Browse all 3619

IOComp Components pngimage.pas error

$
0
0
Arkadaşlar IOComp Components 2015 Full Source XE6 - XE8 versiyonunu siteden indirip library path tanımı yaptıktan sonra delphi paketini kurdum toolbox da companent bileşenleri yerlerine aldı. Fakat projenin içerisine companentlerin herhangi birini attığımda

[dcc32 Error] pngimage.pas(2771): E2064 Left side cannot be assigned to hatası veriyor

procedure aşağıda yer almaktadır. Kırmızı işaretli alan hata veren satır.
Yardımcı olabilecek birisi varsa çok makbule geçecek... 

procedure TChunkIDAT.CopyInterlacedRGB8(const Pass: Byte;
  Src, Dest, Trans{$IFDEF Store16bits}, Extra{$ENDIF}: pChar);
var
  Col: Integer;
begin
  {Get first column and enter in loop}
  Col := ColumnStart[Pass];
  Dest := pChar(Longint(Dest) + Col * 3);
  repeat
    {Copy this row}
    Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest);
    Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^]; inc(Dest);
    Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src)    )^]; inc(Dest);


    {Move to next column}
    inc(Src, 3);
    inc(Dest, ColumnIncrement[Pass] * 3 - 3);
    inc(Col, ColumnIncrement[Pass]);
  until Col >= ImageWidth;
end;


 

Viewing all articles
Browse latest Browse all 3619

Latest Images

Trending Articles



Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>