Tagged Questions
1
vote
2answers
881 views
PHP iMagick image compression
I'm fairly new to iMagick and have only found very limited documentation on the PHP library. I'm happily resizing images and writing them back to the hard drive, but I'm failing completely to ...
0
votes
1answer
172 views
PHP+Imagick - PNG Compression
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');
...