To modify a picture during installation
After a general compilation, the image that appears on the left side of the installation process is this way:
In fact, you can modify it just to make a slight change in the Setup section, add a line of code:
[Setup]
Appname=test
Appvername=test
Defaultdirname= "E:\TEST"
appversion=1.0
Wizardimagefile=dh.bmp
[Files]
Source: "F:\desktop\ipmsg.exe"; DestDir: "{app}"
Note that the above bold line is the code to set up the picture, the picture must be placed in the same directory as the script file, if not, need to provide a complete path, and must be a BMP bitmap, the manual specifies that the maximum size of the picture is 164x314 pixels, but a little more than seems to have no problem. The effect is as follows:
Another picture of the location also shows that the installation process will also appear in the upper right side of the small picture:
This small image corresponding to the item is Wizardsmallimagefile, the maximum size of the picture is 55x58 pixels, modified method and similar above, the following is the effect of the modified:
Inno Setup Primer (ii)--Modify the image during installation