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

<?php
$file ="test.pdf";
$im = new imagick(realpath($file).'[0]');
$im->setImageFormat("png");
$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)."' />";    
?>

Which returns a thumbnail, but the background is transparent. I want to set white background color, (change the alpha layer to white). How can i do this??

Thanks in advance...:)

blasteralfred

link|improve this question

If you make it to be a jpg file instead of a png? – George Kastrinis May 23 '11 at 14:49
I agree, see stackoverflow.com/questions/2569970/… – AllisonC May 23 '11 at 14:54
initially i tried to make jpg file... but i got a jpg with black background :P :P .. thats y i turned to png... do u know how to change jpg black background color?? or suggest me how to set one in png... – blasteralfred May 23 '11 at 14:56
@AllisonC, I want to do it without GD. I first tried to make a jpg, but got one with black background. Do u know how to fix dat?? – blasteralfred May 23 '11 at 15:05
i would try to draw a rectangle, same size as the image and fill it ... ? – helle May 23 '11 at 16:33
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

I'm doing something similar, although I'm actually writing the image to the disk - When I used your direct output, it worked and I got the actual color from the PDF.

Through a bit of debugging, I figured that the issue was actually related to the

imagick::resizeImage()

function. For whatever reason, when you set all of your colors, compression, etc. the resizeImage adds the black background. My solution is to use GD for the resizing, so that I can have a full dynamic resize - Since you're not interested in such thing, I would simply use the image sampling functionality. Your code should be like this:

<?php
$file ="test.pdf";
$im = new imagick(realpath($file).'[0]');
$im->setCompression(Imagick::COMPRESSION_JPEG);
$im->setCompressionQuality(80);
$im->setImageFormat("jpeg");
$im->sampleImage(200,200);
// start buffering
ob_start();
$thumbnail = $im->getImageBlob();
$contents =  ob_get_contents();
ob_end_clean();    
echo "<img src='data:image/jpg;base64,".base64_encode($thumbnail)."' />";    
?>
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.