I'm converting .jpg and .gif images to .png using PHP's Imagick library.

I've successfully converted these images to .png using this:

$image = new Imagick( $file_path );
$image->setImageFormat( 'png' );
$image->writeImage( $file_path );

However, I have been unable to compress the .pngs or control their final size at all. I've tried using the following line before $image->setImageFormat() and a few other variations with no success:

$img->setImageCompressionQuality( 95 ); 

If .png compression with Imagick is lacking, then what other utilities should I use to compress these files?

This manual may help.

link|improve this question

80% accept rate
The manual entry you linked mentions pngcrush and OptiPng. Probably your best bet if you really need to bring file size down. – Frank Farmer Dec 10 '11 at 4:39
feedback

1 Answer

up vote 1 down vote accepted

I installed OptiPNG and it works fine. I could not get IMagick to compress png's properly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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