PNG Delphi is Delphi Component (or Class) for doing PNG operations through Delphi. It has lots of functions and procedures to manipulate PNG files.

For example if you want to load a PNG image practically to a TImage area simply write this code :


procedure xyz;
var
        filepng      : TPngObject;
begin
...
...
        filepng := TPngObject.Create;
        filepng.LoadFromFile('C:\myimage.png');
        JvImage1.Picture.Assign(filepng);
...
...
end;

Lets archive : pngimage.zip (223KB)

Tags: , , ,
Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>