Quote from: Galfar on 12 March 2010, 18:16:31
Basically you need to load the image into TMultiImage and then convert each frame to VCL TBitmap descendant which you can easily display on form.
Code Select
Var
FImage: ImagingClasses.TMultiImage;
begin
FImage := TMultiImage.Create;
FImage.LoadMultiFromFile('post_63_33.png');
//img1.Picture.Bitmap.Assign(FImage); ???
FImage.Free;
end;
How to display animation in TImage? Whether it is possible or I need ExtraGIF?
write an example of use if it isn't difficult, for apng file