How do I efficiently compress a PNG? In my case, the images are small grayscale images with transparency.

Currently I'm playing with this:

// ...

$im->setImageFormat('png');
$im->setImageColorspace(\Imagick::COLORSPACE_GRAY);
$im->setImageCompression(\Imagick::COMPRESSION_LZW);
$im->setImageCompressionQuality(9);
$im->stripImage();
$im->writeImage($url_t);

As Imagick doesn't offer COMPRESSION_PNG, I've tried LZW but there's almost no change in the filesize (usually it's even bigger than before).

If I open the image in GIMP and simply save it, the filesize gets drastically reduced (e.g. 11,341 B --> 3,763 B or 11,057 B --> 3,538).

What is the correct way of saving a compressed PNG with Imagick?

link|improve this question

1  
Related reading: imagemagick.org/Usage/formats/#png_quality – Pekka Sep 18 '11 at 16:40
@pekka, thanks for the link! However, I'm not sure if it works the same with php. I've tried saving my images with compressions 00-99 and the difference in filesizes was at most about 10 %. But a simple GIMP-save pushed the size down to about one third. Is there something else I could be doing wrong? – Czechnology Sep 18 '11 at 19:03
1  
I'm having the same problem... Unfortunately haven't found a good answer yet. – Joshua Burns Dec 8 '11 at 23:36
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.