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: component, delphi, png, programming
Entries (RSS)