pngdelphi
pngdelphi copied to clipboard
This is a full, open sourced implementation of png in Delphi. It has native support for most of png features including the partial transparency, gamma and more. This project was initially created by G...
by assigning pRGBQuad(...)^, four bytes were copied, and with certain images, this may cause an access violation on the fourth byte beyond the RGB data on the 'last' pixel (of...
When running a project using this file in Delphi XE3, I'm getting an error: https://github.com/JackTrapper/pngdelphi/blob/master/PNGImage.pas#L2773 ``` {Copy this row} Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 2)^]; inc(Dest); Byte(Dest^) := fOwner.GammaTable[pByte(Longint(Src) + 1)^];...