Skip to content Skip to sidebar Skip to footer

Converting Html To An Image

Possible Duplicates: Convert URL to screenshot (script). PHP: How to capture browser window screen with php? I have a URL and I want to convert that webpage screenshot to an ima

Solution 1:

This isn't the best solution, but you could convert the HTML page to a PDF, then use imagemagick to convert the pdf to a jpeg using this command exec("convert sample.pdf sample.jpeg"). To convert HTML to pdf, see this question.

Convert HTML + CSS to PDF with PHP?

Solution 2:

The shutter screenshot tool is able to do that.

It's in the menu: File -> New -> Web

Can be used with Linux and PHP on the same system. See the manpage for commandline options to be invoked from PHP.

Post a Comment for "Converting Html To An Image"