MagickWand is a wrapper around imagemagic (convert) and ghostscript (gs) that lets PHP developers convert Adobe PDF documents to PNG, GIF or JPEG images !
<?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 );
?>
There are no comments on this page. [Add comment]