I am rotating an image using Image Magick (as PHP-GD scales down image).

But it leaves the background to be black. Also, the image doesn't look good at all(but better than PHP-GD).

Any suggestions?

@oren , @razzed Here's the code

$patchImageS        =   'kapeels.png'; // the image to be patched over the final bg
$imagick            =   new Imagick();     $imagick->readImage($patchImageS);
$imagick->rotateImage(new ImagickPixel(), 355);
$imagick->transparentPaintImage('black', 0.0,0,false);
header('content-type:image/png');
$fp=fopen('tts.png','w+'); 
fwrite($fp,$imagick->getImage()); 
fclose($fp);

And this's the image which I am trying to rotate -

http://www.lilpirate.net/kapeels.png

Thanks for the reply guys :-)

link|improve this question

Is the image a solid color? – Oren Apr 26 '10 at 19:01
How about some sample code, command line, or a source image URL? – razzed Apr 26 '10 at 21:07
@razzed - Question updated. Have a look. @oren - nope – KPL Apr 27 '10 at 3:47
feedback

1 Answer

After create Imagick object, in him arguments set a background transparent:

$imagick->newimage($width, $height, "rgba(0, 0, 0, 0)");
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.