Titles says it all. I'm making a favicon.ico script, and i need to know the max amount of bits possible.
+2
A:
It maxes out at 32 bits per pixel, 24 RGB plus alpha transparency, so that would be 32 x 32 x 32, or 32768 bits.
So 4096 bytes (4K).
paxdiablo
2010-03-12 11:39:38
Cool. Thanks :)
cvack
2010-03-12 11:47:45
+1
A:
In theory, a single ico file can contain up to 65,535 images (see header description). That would mean that the maximum number of pixels could be as large as 65535*32*32, which at 4 bytes per pixel comes to 268,435,456 bytes.
unwind
2010-03-12 14:46:05