You could use one of several image modules at cpan. 
See their pages for specifics. Or If you had say $html_code
 and wanted it to be a gif you could use an external program to 
Modify it. I use this tactic to make pdfs out of html.

$gif_guts = `cat $html_code | translator_prog`;
print "Content-type: image/gif\n\n";
print $gif_guts;

Hope that helps a little.

DMuey


> 
> I would like to convert an HTML document into an image file
> 
> Is there any possibility to do this with perl? Do you have 
> any idea how to do it or some library useful to that?
> 
> tnx
> Frank 
> 
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your 
> desktop! http://platinum.yahoo.com
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to