Tagged Questions
0
votes
1answer
547 views
PHP Imagick setImageOpacity destroys transparency and does nothing
Here's the thing.
I hava a simple snippet in PHP like this regarding a transparent image:
$im = new Imagick('some-transparent-image.png');
$im->setImageOpacity(0.3);
...
0
votes
2answers
1k views
Imagemagick thumbnail generation with php - using -crop
Long ago I created a small library for resizing images using imagemagick through system(...) because I did not feel that the build-in imagemagick functions for PHP were sufficient.
However, recently ...