19

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.

Deanna
  • 23,876
  • 7
  • 71
  • 156
Vikyboss
  • 940
  • 2
  • 11
  • 23

1 Answers1

33

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.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
mirtheil
  • 8,952
  • 1
  • 30
  • 29
  • Thanks mirtheil, I just found out that. Much appreciated and thanks for the optimal size info. – Vikyboss Sep 21 '11 at 17:05
  • 13
    If like me, you also wanted to change the large image on the left of the first installer page, you may follow the instructions on [this blog post](http://www.andrew-seaford.co.uk/custom-inno-theme/). – ereOn May 07 '15 at 22:49
  • Also you need to make the image with 24 bits (R8 G8 B8), with Paint or Gimp is easy to do. – Gustavo Nov 02 '17 at 12:25