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.
Var
FImage: ImagingClasses.TMultiImage;
begin
FImage := TMultiImage.Create;
FImage.LoadMultiFromFile('post_63_33.png');
//img1.Picture.Bitmap.Assign(FImage); ???
FImage.Free;
end;
Page created in 0.033 seconds with 20 queries.