I use the following code to display a background image in InnoSetup,
procedure InitializeWizard();
var
BackgroundImage: TBitmapImage;
begin
BackgroundImage := TBitmapImage.Create(MainForm);
BackgroundImage.Parent := MainForm;
BackgroundImage.SetBounds(0, 0, MainForm.ClientWidth, MainForm.ClientHeight);
BackgroundImage.Stretch := True;
BackgroundImage.Bitmap.LoadFromFile(ExpandConstant('C:\image.gif'))
end;
But this does not work for GIF animated images. Is there a way in InnoSetup to display GIF images in the background or loop through bitmap images?