Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
2k views

PHP gdLib 8-Bit PNG with alpha

how is it possible to save my image, created with gd, as an png-8? it saves as gif with transparent channel well - but I want to use png-8. Best Regards, Beerweasle
3
votes
1answer
233 views

How to save 8-bit PNGs with ChunkyPNG or RMagick

I've been trying to save 8-bit PNGs (PNG8) using RMagick (http://rmagick.rubyforge.org/) and ChunkyPNG (https://github.com/wvanbergen/chunky_png) but have been unable to do so. However the only time ...
2
votes
3answers
819 views

PNG8+Alpha from Fireworks (colormap) are different/smaller than from elsewhere (RGBA). Why?

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 ...
2
votes
6answers
3k views

How can you tell png8 from a png24

I'm working on a website that uses lots of png24 files, for transparency. I need to replace them with png8 files, as all the png fix style javascript workarounds for png24 cause IE6 to lock up ...
1
vote
2answers
430 views

How to convert PNG to 8-bit PNG using PHP GD library

I want to write a routine which takes PNG image path as parameter and convert that image into 8-bit PNG image. I need to use PHP GD library for this.
1
vote
2answers
469 views

How to tell if image is PNG24 or PNG8 and the number of bits and channels?

I am trying to distinguish PNG-8 and PNG-24 images with getimagesize or Imagick, but I don't quite know how to to it. getimagesize does not return channels for my PNGs and displays the mimetype ...
0
votes
1answer
370 views

Create and write paletted RGBA PNG using NSImage

I'm trying to create paletted PNG image (8-bit per pixel) that uses RGBA palette (32-bit per palette entry) using Cocoa framework*. I've tried few combinations for [NSBitmapImageRep ...
0
votes
4answers
1k views

Is there some library in Java to compress Png images like pngout?

Is there some library in Java to compress Png images like pngout, pngcrush, optipng which are written in C/C++? In continuation to what Phil has commented below, what I meant was reducing the file ...