vote up 4 vote down star
1

I want to take a screenshot via a python script and unobtrusively save it.

I'm only interested in the Linux solution, and should support any X based environment.

flag

9 Answers

vote up 4 vote down
import ImageGrab
img = ImageGrab.grab()
img.save('test.jpg','JPEG')

this requires Python Imaging Library

link|flag
7  
Only works on Windows: pythonware.com/library/pil/… – Adam Bernier Apr 4 at 19:52
vote up 4 vote down

This one works on X11, and perhaps on Windows too (someone, please check). Needs PyQt4:

import sys
from PyQt4.QtGui import QPixmap, QApplication
app = QApplication(sys.argv)
QPixmap.grabWindow(QApplication.desktop().winId()).save('test.png', 'png')
link|flag
2  
Please make note of PyQt's licensing, which is more restrictive than Python and Qt. riverbankcomputing.co.uk/software/pyqt/… – unknown (google) Aug 13 at 5:09
user kmilin (below) reports that this does work on Windows – Tartley Dec 3 at 15:07
vote up 3 vote down

This works without having to use scrot or ImageMagick.

import gtk.gdk

w = gtk.gdk.get_default_root_window()
sz = w.get_size()
print "The size of the window is %d x %d" % sz
pb = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB,False,8,sz[0],sz[1])
pb = pb.get_from_drawable(w,w.get_colormap(),0,0,0,0,sz[0],sz[1])
if (pb != None):
    pb.save("screenshot.png","png")
    print "Screenshot saved to screenshot.png."
else:
    print "Unable to get the screenshot."

Borrowed from http://ubuntuforums.org/showpost.php?p=2681009&postcount=5

link|flag
vote up 1 vote down

A short search turned up gtkShots looks like it might help you, as it's a GPLed python screenshot program, so should have what you need in it.

link|flag
vote up 0 vote down

is there a way to do this without importing anything (only the python distribution)

link|flag
vote up 0 vote down

Any reason you can't use scrot?

link|flag
vote up 0 vote down

sys + PyQt4 works on windows too, thanks Juliano!

link|flag
vote up 0 vote down

@ Juliano: Is there any chance to make a screenshot of only one window with pyqt4 ? or make a screenshot in a area which is set? thanks..

edit: okay.. i found it..sry

link|flag
vote up -5 vote down

First page on google search for python screen shot. It assumes you have the graphics module available of of course.

/Allan

link|flag
1  
That page looks to me like it is for series60 phones. I don't have a Linux box handy to test it on. – Matthew Schinckel Sep 16 '08 at 6:12
2  
In fact, I suspect that the graphics module you refer to is (a) not a part of the python standard library, and (b) is only available on S60 python. – Matthew Schinckel Sep 16 '08 at 6:15

Your Answer

Get an OpenID
or

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