Quote from: justsecribe on 7 December 2016, 14:50:17Hi all.
How can i show my favorite buzz bingo bonus codes in an animated transparent window? (Some SplashLogo...)
Thanks.
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.036 seconds with 19 queries.