Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WiX standard bootstrapper application (burn) - image sizes

Tags:

wix

I'm following this extract from wixtoolset.org - Changing the WiX Standard Bootstrapper Application Branding as I'm using the HyperlinkSidebarLicense UI.

    <?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
     xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
  <Bundle>
    <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkSidebarLicense">
      <bal:WixStandardBootstrapperApplication
        LicenseUrl="License.htm"
        LogoFile="path\to\customlogo.png" LogoSideFile="path\to\customsidelogo.png"
        />
    </BootstrapperApplicationRef>

    <Chain>
      ...
    </Chain>
  </Bundle>
</Wix>

However, I can't seem to find any reference to what size the PNG files need to be.

Has anyone worked with the bootstrapper before who can advise here?

like image 576
maffoo Avatar asked Apr 20 '18 07:04

maffoo


People also ask

How do I customize the Wix standard bootstrapper application layout?

The WiX Standard Bootstrapper Application contains a predefined user interface layout. It is possible to customize the layout using the WixStandardBootstrapperApplication element provided by WixBalExtension. The following example uses a "customtheme.xml" file found in the "path o" folder relative to the linker bind paths.

How do I change the size of the bootstrapper application window?

The overall size of the bootstrapper application window can be customized by changing the Width and Height attributes of the Window element within the theme along with modifying the size and/or position of all the controls. To view a theme file without having to build a bundle, you can use the ThmViewer.exe which is located in %WIX%\bin\.

What are the file types of bootstrapper?

Bootstrapper.wxs - Main file for generating the bootstrapper ( *.exe file) MakeBootstrapper.bat - Batch script to compile Bootstrapper.wxs file myAppSetup.msi - Example of .msi installer file for my app installation

How do I install the Wix toolset?

Click ‘Add reference’ and browse to the WiX install path. (on my machine this is C:\Program Files (x86)\WiX Toolset v3.11\bin ). Next you need to add the theme files you want to use for layout.


1 Answers

According to the images included in the source, it looks like...

  • LogoFile is 64x64
  • LogoSideFile is 165x400
like image 183
meadisu Avatar answered Nov 10 '22 10:11

meadisu