Change the image in the Inno Setup wizard banner
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 |
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 |
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.8k652120
20.8k652120
asked Sep 21 '11 at 15:22
VikybossVikyboss
6122822
6122822
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
5
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 |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
5
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 |
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
5
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 |
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
65.2k15162295
65.2k15162295
answered Sep 21 '11 at 16:42
mirtheilmirtheil
7,0522124
7,0522124
Thanks mirtheil, I just found out that. Much appreciated and thanks for the optimal size info.
– Vikyboss
Sep 21 '11 at 17:05
5
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
5
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
5
5
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 |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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