vote up 0 vote down star

In Fireworks, when you export a PNG8 file with alpha transparency, the resulting file will be something like this:

png8-fireworks.png: PNG image data, 500 x 500, 8-bit colormap, non-interlaced

If you convert a 32bit PNG using other tools (PNGOUT, Smush.it) the result looks like this:

png24-smushit.png:  PNG image data, 500 x 500, 8-bit/color RGBA, non-interlaced
png8-pngout.png:    PNG image data, 500 x 500, 8-bit/color RGBA, non-interlaced

What exactly is the difference? They both have alpha transparency, but the Fireworks file is 8KB while the others are 20KB. Now the Fireworks file in noticeably lower quality (namely with banding on gradients).

For some images the PNG8+alpha from Fireworks works great and has a super small file size comparatively. I just haven't been able to figure out what Fireworks is doing and how it is different than the other methods.

flag

1 Answer

vote up 0 vote down

PNG-8 means 8 bits per pixel, which means it can only display 256 different colours (from a pallet).

24 and 32 bits per pixel allow you to use far more colours (and hence get nice smooth gradients) but come at the cost of filesize.

link|flag
I realize this. My question was what the difference is between the PNG-8s Fireworks produces (8-bit colormap, non-interlaced) and the PNG-8s other command line tools produce (8-bit/color RGBA, non-interlaced). The Fireworks files still have an alpha channel, slightly lower quality, but have a drastically smaller file size) My Fireworks settings for export are: * PNG 8 * 256 colors * Alpha Transparency – timkelty Jul 9 at 2:51
further investigation using "identify -verbose filename.png" in Terminal resulted in these findings: The fireworks images looked like this: Depth: 8-bit Channel depth: red: 8-bit green: 8-bit blue: 8-bit alpha: 4-bit While the others looked like this: Depth: 8-bit Channel depth: red: 8-bit green: 8-bit blue: 8-bit alpha: 8-bit – timkelty Jul 9 at 3:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.