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);
$im->writeImage('output.png');

The file output should be a transparent image with lower opacity, right?

Well, the output is an image with black color where it was supposed to be transparent and the image opacity is exactly the same.

Does it have to do with configuration or am i missing something?

Thank you in advance

link|improve this question

43% accept rate
You should accept an answer to your questions... i see you have lots of questions but you dont accept the answers. – Quamis Dec 9 '10 at 9:27
feedback

1 Answer

setImageOpacity unfortunately affects the whole image, so to leave the transparent areas transparent replace $im->setImageOpacity(0.3); with :

$im->evaluateImage(Imagick::EVALUATE_MULTIPLY, 0.3, Imagick::CHANNEL_ALPHA);

link|improve this answer
Thnx for the reply, i'll try that out and let you know if it works :) – Fotis Sep 5 '10 at 0:20
Hey, did you manage to get it working in the end? – Paul Sep 30 '10 at 21:18
+1: Works great for me. – scotts Nov 17 '10 at 23:45
feedback

Your Answer

 
or
required, but never shown

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