Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change the image in the Inno Setup wizard banner

Tags:

inno-setup

How do I change the image in the banner of wizards. I know how to change it in the first page, using this command:

WizardImageFile=C:\Documents and Settings\mybmp.bmp

But my question is about following pages, where it shows standard image banner at the top.

like image 390
Vikyboss Avatar asked Sep 21 '11 15:09

Vikyboss


1 Answers

The banner at the top is controlled by the WizardSmallImageFile directive. For example:

[Setup]
...
WizardSmallImageFile=mysmallimage.bmp

The maximum size of the bitmap is 55x58 pixels.

like image 160
mirtheil Avatar answered Oct 20 '22 20:10

mirtheil