Free Software Server Environment : MagickWand

HomePage :: Categories :: PageIndex :: RecentChanges


Search this site: FSSE.INFO is produced by "osde8info" :

Revision [672]

Most recent edit made on 2008-07-24 17:24:34 by FsseInfo

Additions:
MagickWand is a wrapper around imagemagic (convert) and ghostscript (gs) that lets PHP developers convert Adobe PDF documents to PNG, GIF or JPEG images !
MagickSetResolution( $w, 200, 200 );
MagickReadImage( $w, $file );
MagickSetImageFormat( $w, $ext );


Deletions:
MagickWand is a wrapper around imagemagic (convert) and ghostscript (gs) that lets you convert PDFs to PNGs !
MagickSetResolution($w, 200, 200);
MagickReadImage($w, $file);
MagickSetImageFormat($w,$ext);




Revision [671]

The oldest known version of this page was edited on 2008-07-24 16:33:57 by FsseInfo
http://www.magickwand.org/

MagickWand


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 );

?>
Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki
Page was generated in 0.0825 seconds