http://qs321.pair.com?node_id=239158


in reply to Rendering HTML / capturing pixels

You could convert your HTML to postscript via HTMLDOC (GPL) and then use Ghostscript.pm (Perl API for Ghostscript) to convert to a ppm. Then convert your ppm to a GIF, which can then be loaded into Image::Magick.

Here is a shell script showing how ghostscript converts a postscript file to a ppm on the command line, you could probably simulate these actions using Ghostscript.pm:

#! /bin/sh # pstogif # # Call it by putting the .ps file name as first argument # but without the ".ps" extension. # Ex: for "Intro_Tbl.ps" use "pstogif Intro_Tbl" # gs -r72x72 -sDEVICE=ppmraw -sOutputFile=$1.ppm << endinput ($1.ps) run endinput pnmcrop < $1.ppm | ppmtogif > $1.gif
...This requires both GhostScript and pbmplus to work.

HTH. :-)

--
hiseldl
What time is it? It's Camel Time!

Replies are listed 'Best First'.
Re: Re: Rendering HTML / capturing pixels
by Anonymous Monk on Feb 27, 2003 at 19:42 UTC
    Thank you :) I like the sound of this and I'm going to check it out. This might be the right solution for what I have in mind.

    A general thanks to everybody for the helpful suggestions.

    SpaceAce

      If you are using KDE, you can use 'kwebdesktop' to capture an image of a website. For example:

      % kwebdesktop 800 600 perlmonks.png http://www.perlmonks.org/