Change the image in the Inno Setup wizard banner
up vote
10
down vote
favorite
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 Settingsmybmp.bmp
But my question is about following pages, where it shows standard image banner at the top.
inno-setup
add a comment |
up vote
10
down vote
favorite
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 Settingsmybmp.bmp
But my question is about following pages, where it shows standard image banner at the top.
inno-setup
add a comment |
up vote
10
down vote
favorite
up vote
10
down vote
favorite
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 Settingsmybmp.bmp
But my question is about following pages, where it shows standard image banner at the top.
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 Settingsmybmp.bmp
But my question is about following pages, where it shows standard image banner at the top.
inno-setup
inno-setup
edited Jun 26 '12 at 8:15
Deanna
20.5k648117
20.5k648117
asked Sep 21 '11 at 15:22
Vikyboss
6072822
6072822
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
19
down vote
accepted
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.
Thanks mirtheil, I just found out that. Much appreciated and thanks for the optimal size info.
– Vikyboss
Sep 21 '11 at 17:05
3
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.
– ereOn
May 7 '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 2 '17 at 12:25
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
19
down vote
accepted
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.
Thanks mirtheil, I just found out that. Much appreciated and thanks for the optimal size info.
– Vikyboss
Sep 21 '11 at 17:05
3
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.
– ereOn
May 7 '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 2 '17 at 12:25
add a comment |
up vote
19
down vote
accepted
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.
Thanks mirtheil, I just found out that. Much appreciated and thanks for the optimal size info.
– Vikyboss
Sep 21 '11 at 17:05
3
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.
– ereOn
May 7 '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 2 '17 at 12:25
add a comment |
up vote
19
down vote
accepted
up vote
19
down vote
accepted
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.
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.
edited Dec 30 '14 at 10:27
TLama
64.3k15158283
64.3k15158283
answered Sep 21 '11 at 16:42
mirtheil
6,7942023
6,7942023
Thanks mirtheil, I just found out that. Much appreciated and thanks for the optimal size info.
– Vikyboss
Sep 21 '11 at 17:05
3
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.
– ereOn
May 7 '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 2 '17 at 12:25
add a comment |
Thanks mirtheil, I just found out that. Much appreciated and thanks for the optimal size info.
– Vikyboss
Sep 21 '11 at 17:05
3
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.
– ereOn
May 7 '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 2 '17 at 12:25
Thanks mirtheil, I just found out that. Much appreciated and thanks for the optimal size info.
– Vikyboss
Sep 21 '11 at 17:05
Thanks mirtheil, I just found out that. Much appreciated and thanks for the optimal size info.
– Vikyboss
Sep 21 '11 at 17:05
3
3
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.
– ereOn
May 7 '15 at 22:49
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.
– ereOn
May 7 '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 2 '17 at 12:25
Also you need to make the image with 24 bits (R8 G8 B8), with Paint or Gimp is easy to do.
– Gustavo
Nov 2 '17 at 12:25
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f7502365%2fchange-the-image-in-the-inno-setup-wizard-banner%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown