vote up 4 vote down star
4

I wonder if there is any way to convert a web page (from any given URL) into an image?

this is basically equivalent to taking a "screenshot" of the page after opening it.

There is a method to do it in firefox, using an extension; I can draw the DOM contents onto a Mozilla Canvas. But I'm wondering if there is any way to do it as a standalone application.

flag

8 Answers

vote up 2 vote down check

Real answers:

http://cutycapt.sourceforge.net/

http://iecapt.sourceforge.net/

http://www.websitescreenshots.com/

http://www.princexml.com/

http://khtml2png.sourceforge.net/

(Don't know of one to use Mozilla's renderer, though.)

link|flag
thanks :) btw, I found the mozilla renderer in Jim Puls' answer: hackdiary.com/2004/06/… – harshath.jr Jun 9 at 5:14
vote up 0 vote down

You could use imagemagick and write a script that fires everytime you load a webpage.

link|flag
vote up 0 vote down

In order to take a picture of a web page, you have to render it first, so you're going to need a browser of some kind. I'll be you could do it with WebKit.

http://webkit.org/

link|flag
vote up 0 vote down

I'm not sure if this is quite what you're looking for but I've had a lot of success using an HTML to Postscript converter html2ps to create postscript copies of web pages, which I then convert to .gif or .pngs

This doesn't produce exact screenshot quality that you'd get from a web browser and doesn't handle complicated things like flash or css all that well, but the advantage is that you can run it on the web server.

(I use it to create thumbnails of user created content, for navigation)

link|flag
vote up 1 vote down

Somebody wrote a blog post about this a few years back. There are examples in several languages, using both WebKit and Mozilla. There's also an example in Ruby.

It boils down to this: decide how wide you want your window to be; put a browser component in the window; wait until the page loads; capture the pixel buffer contents.

link|flag
vote up 0 vote down

Not sure if this is what you want but this is what I do sometimes in a pinch when certain websites are not saving right.

I just print them to PDF and I get a PDF file of the 'print output'. There's an Microsoft XPS Document writer under my list of printers as well, but I don't use it.

Hope this helps! =)

link|flag
neaope.. not what I wanted, exactly.. I wanted a commandline tool to do that, and found it in the other answers, too! thanks anyway! – harshath.jr Jun 9 at 5:13
vote up 0 vote down

Using Firefox, you will need the screengrab addon.

link|flag
vote up 1 vote down

Awesome : http://code.google.com/p/wkhtmltopdf/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.