How much can be the most complex PNG image in kilobytes, say, 100x100 pixels? How can I calculate it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The maximum numbers of bits per pixel in a PNG is 64, so 640,000 bits, or 80,000 bytes. There'll also be an 8 byte signature in the beginning of the file, some other information about the file, and EXIF data can contain arbitrary amounts of information. Wikipedia has information on the spec. If you're looking for a reasonable approximation for an upload limit, 100-150kb is probably fair. If you're looking for an exact number, there isn't one. |
||||