Is it possible to use .png images for WiX bitmaps

前端 未结 4 661
有刺的猬
有刺的猬 2020-12-19 02:48

I am using 2 500K bitmaps in to display images on my WiX dialogs.

They dramatically increase the size of the installation package, and what is worse - it looks there

4条回答
  •  梦毁少年i
    2020-12-19 02:53

    The Windows Installer documentation for the Bitmap control states that the image should be a "bitmap" -- presumably a .BMP file -- or a JPEG.

    You have to remember, when working with WiX, that it's based on Windows Installer. This means that any limitations in WiX are often caused by limitations in the underlying Windows Installer implementation.

    .BMP files can be RLE-compressed. I don't know if they support any other compression algorithms.

提交回复
热议问题