Additions:
Deletions:
MagickWand is a wrapper around imagemagic (convert) and ghostscript (gs) that lets you convert PDFs to PNGs !
<?php
$file=
'test.pdf';
$ext=
'PNG' ;
$w = NewMagickWand
();
MagickSetResolution
($w,
200,
200);
MagickReadImage
($w,
$file);
MagickSetImageFormat
($w,
$ext);
header( 'Content-Type: image/' .
$ext );
MagickEchoImageBlob
( $w );
?>