How can I use ImageMagick (with the php extension) to set the transparent background to white when converting an image from PNG to JPEG?

link|improve this question
Which php extension, there are three. MagickWand, IMagick or phMagick? – Orbling Mar 12 '11 at 1:16
feedback

1 Answer

At time of writing, you have not specified which extension you are using, but if you were using the commandline, the command would be:

convert image.png -background white -flatten -alpha off image.jpg

More information can be found on the Masking Usage documentation.

Using IMagick for instance, I think you could do this as follows:

(totally untested, never used IMagick and don't have it installed to test)

$image = new IMagick('image.png');

$flattened = new IMagick();
$flattened->newImage($image->getImageWidth(), $image->getImageHeight(), new ImagickPixel("white"));

$flattened->compositeImage($image, imagick::COMPOSITE_OVER, 0, 0);

$flattened->setImageFormat("jpg");
$flattened->writeImage('image.jpg');

$image->clear();
$image->destroy();
$flattened->clear();
$flattened->destroy();
link|improve this answer
I believe you should use $sizes = $image->getImageGeometry(); $width = $sizes['width']; $height = $sizes['height']; instead of $image->getWidth(), $image->getHeight() – CappY Mar 12 '11 at 23:17
1  
@CappY: That works too, any reason for the function over the other two, except perhaps a few microseconds performance boost? – Orbling Mar 13 '11 at 0:15
@Orbling : Fatal error: Call to undefined method Imagick::getWidth() Dunno if it's works for you. – CappY Mar 13 '11 at 1:40
@CappY: How bizarre... it's in the doc: php.net/manual/en/function.imagick-getimagewidth.php – Orbling Mar 13 '11 at 7:09
It's $image->getImageWidth(); and $image->getImageHeight(); I didn't saw these functions. :) – CappY Mar 13 '11 at 7:24
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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