Can I get my Windows application icons any smaller?
In the icon group I include:
1.) a 256x256 png image for extra large icons, (about 12k compressed) and let Windows re-size to 96x96 for large icons.
2.) a 48x48 32 bit image (about 12k), and let Windows re-size to 32,24, and 16x16.
The icon is about 24k. If I replace the 32 bit image with a 48x48 png, the size
is reduced to about 15k and Windows accepts that. However some programs report that
"the icon is corrupted...".
Is 24k about a lower limit to the size of application icons (that will render in
most applications?)
Vlasta
on September 17th 2014
0
PNG-compressed icon images are supported in Vista and newer, so it won't be displayed in XP and older. If that is not what your users will have, you can use the smaller icon. Theoretically, you can have just the 256x256 format. Though Microsoft recommends 16, 24, 32, 48 and 256 for best user experience. The smaller images should be optimized and eventually use a different glyph.
Yep, Windows accepts only a 256x256 compressed png! Total size only about 13k.
The 16x16 and 32x32 icons suffer minor edge distortion from re-sizing, but
all the others fair very well. It's good to know that I don't need all the formats
while I am experimenting; I can add 16, 24, 32, and 48 later when I have completed
an application. I noticed there is no distortion at all when Windows uses the actual image for an icon. A full blown icon package is never much more than 30k, and
I can live with that.
I will post any future comments in the forum as you suggested... thanks...