Discussion: html2png
Afficher un message
Vieux 08/09/2007, 16h39   #3
Al
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: html2png

Imagick PHP extension, easiest, or Imagemagick command line using exec().

Imagick to read a pdf and output it as a jpeg:

header('Content-type: image/jpeg');
$obj = new Imagick('xxxxx.pdf');
$obj->SetImageFormat('jpeg');
echo $obj;

Your want to use montage, resizing and write the result to a file, etc.






timothy johnson wrote:
> I was wondering if anyone knew of some php code that I could use to create
> thumbnails of webpages.
>

  Réponse avec citation
 
Page generated in 0,05900 seconds with 9 queries