I have a php script to create jpg thumbnail of pdf as follows;

<?php
$file ="test.pdf";
$im = new imagick(realpath($file).'[0]');
$im->setImageFormat("jpg");
$im->resizeImage(200,200,1,0);
// start buffering
ob_start();
$thumbnail = $im->getImageBlob();
$contents =  ob_get_contents();
ob_end_clean();
echo "<img src='data:image/jpg;base64,".base64_encode($thumbnail)."' />";
?>

But the resulting jpg have black background instead of white.. How can I fix this??

link|improve this question

A copy or a link to the jpg file in question would be helpful and also a screen shot of the resulting output. – Laurence Burke May 23 '11 at 15:54
Laurence Burke: here is the resulting image i.imgur.com/jyQC6.jpg – blasteralfred May 23 '11 at 16:09
whats your css styling like and could you link the original jpg??? – Laurence Burke May 23 '11 at 16:22
@Laurence Burke, the above one is the original jpg file. I have no styling at all.. – blasteralfred May 23 '11 at 16:32
feedback

2 Answers

If your version of Imagick is not up to date, the setImageBackgroundColor may be wrong.

Swap the following line

$im->setImageBackgroundColor("red");

to this (Imagick version >= 2.1.0)

$im->setBackgroundColor(new ImagickPixel("red"));

or (Imagick version < 2.1.0)

$im->setBackgroundColor("red");
link|improve this answer
i made some changes in my question.. have a look.. and your suggestion is not working.. – blasteralfred May 23 '11 at 16:36
@blasteralfred Could you provide access to a copy of your PDF as I believe the issue may be related to that, rather than the code you've now provided above. The updated code works without issue with PDF that I have. – carlgarner May 26 '11 at 10:45
feedback
up vote 0 down vote accepted

I solved it by;

$im = new imagick(realpath($file).'[0]');
$im->setCompression(Imagick::COMPRESSION_JPEG);
$im->setCompressionQuality(100);
$im->setImageFormat("jpeg");
$im->writeImage("imagename.jpg");
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.