Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Rendering HTML / capturing pixels

by hiseldl (Priest)
on Feb 27, 2003 at 16:47 UTC ( [id://239158]=note: print w/replies, xml ) Need Help??


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/

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://239158]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (2)
As of 2024-04-20 04:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found