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
: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