Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is a good command line tool to create screenshots of websites on Linux? I need to automatically generate screenshots of websites without human interaction. The only tool that I found was khtml2png, but I wonder if there are others that aren't based on khtml (i.e. have good JavaScript support, ...).

share|improve this question

9 Answers

up vote 33 down vote accepted

A little more detail might be useful...

Start a firefox (or other browser) in an X session, either on your console or using a vncserver. You can use the --height and --width options to set the size of the window to full screen. Another firefox command can be used to set the URL being displayed in the first firefox window. Now you can grab the screen image with one of several commands, such as the "import" command from the Imagemagick package, or using gimp, or fbgrab, or xv.

#!/bin/sh

# start a server with a specific DISPLAY
vncserver :11 -geometry 1024x768

# start firefox in this vnc session
firefox --display :11

# read URLs from a data file in a loop
count=1
while read url
do
    # send URL to the firefox session
    firefox --display :11 $url

    # take a picture after waiting a bit for the load to finish
    sleep 5
    import -window root image$count.jpg

    count=`expr $count + 1`
done < url_list.txt

# clean up when done
vncserver -kill :11
share|improve this answer
   
This worked nice, except for firefox the -display :11 needed to be --display=:11 But you gave me a great starting point! Thanks for that! – Brad F Jacobs Nov 5 '10 at 15:12

Try nice small tool CutyCapt, which depends only on Qt and QtWebkit. ;)

share|improve this answer
2  
Much better than the accepted answer. – exic Sep 4 '12 at 15:56
CutyCapt is an awesome tool, but I used @font-face fonts, and they didn't get displayed correctly. – Mogria Apr 15 at 19:50
Unfortunately it does not report result of download as exit code. – Grzegorz Apr 16 at 13:51

scrot is a command line tool for taking screenshots. See the man page and this tutorial.

You might also want to look at scripting the browser. There are firefox add-ons that take screenshots such as screengrab (which can capture the entire page if you want, not just the visible bit) and you could then script the browser with greasemonkey to take the screenshots.

share|improve this answer
Working link to scrot: freshmeat.net/projects/scrot – Mahmoud Al-Qudsi Apr 18 '10 at 19:22
@Computer Guru - corrected link, thank you – Hamish Downer Apr 19 '10 at 15:29

I know its not a command line tool but you could easily script up something to use http://browsershots.org/ Not that useful for applications not hosted on external IPs.

A great tool none the less.

share|improve this answer
Actually I think I can just use the code from this project to write my own local version instead of submitting stuff through browsershots.org (because it's for a company). – ujh Sep 24 '08 at 8:40

I don't know of anything custom built, I'm sure there could be something done with the gecko engine to render to a png file instead of the screen ...

Or, you could fire up firefox in full screen mode in a dedicated VNC server instance and use a screenshot grabber to take the screenshot. Fullscreen = minimal chrome, VNC server instance = no visible UI + you can choose your resolution.

Use xinit with Xvnc as the X server to do this - you'll need to read all the manpages.

Downsides are that the screenshot is always the same size, doesn't resize according to the web page ...

share|improve this answer

Not for the command line but at least for usage in batch operation for a larger set of urls you may use firefox with its addon fireshot (licensed version?).

  1. Open tabs for all urls in your set (e.g. "open tabs for all bookmarks in this folder...").
  2. Then in fireshot launch "Capture all tabs"
  3. In the edit window then call "select all shots -> save all shots"

Having set the screenshot properties (size, fileformat, etc.) before you end with a nice set of shotfiles.

Steffen

share|improve this answer

There is the import command, but you'll need X, and a little bash script that open the browser window, then take the screenshot and close the browser.

You can find more information here, or just typing import --help in a shell ;)

share|improve this answer

http://khtml2png.sourceforge.net/

The deb file

worked on my Ubuntu after installing libkonq4 ... but you may have to cover other dependencies.

I think javascript support may be better now!

Stephan

share|improve this answer

See Webkit2png.

I think this is what I used in the past.

Edit I discover I haven't used the above, but found this page with reviews of many different programs and techniques.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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