Free Software Server Environment : MagickWand

HomePage :: Categories :: PageIndex :: RecentChanges


Search this site: FSSE.INFO is produced by "osde8info" :
http://www.magickwand.org/

MagickWand


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]

Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki
Page was generated in 0.0376 seconds