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.
|
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. |
|||
|
|
This works without having to use scrot or ImageMagick.
Borrowed from http://ubuntuforums.org/showpost.php?p=2681009&postcount=5 |
|||
|
|
|
Compile all answers in one class. Outputs PIL image.
|
|||
|
|
|
This one works on X11, and perhaps on Windows too (someone, please check). Needs PyQt4:
|
|||||||||||||
|
|
Cross platform solution using wxPython:
|
|||
|
this requires Python Imaging Library |
|||||
|
|
I have a wrapper project (pyscreenshot) for scrot, imagemagick, pyqt, wx and pygtk. If you have one of them, you can use it. All solutions are included from this discussion. Install:
Example:
|
||||
|
|
|
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. |
|||
|
|
|
Just for completeness: Xlib - But it's somewhat slow when capturing the whole screen:
If anyone could manage to make a ctypes-xlib function of the same sort, it would be GREAT!! I tried, but I had some problems with converting ctypes XImage pointer to raw pixelbuffer. One could try to trow some types in the bottleneck-files in PyXlib, simply just by using Cython. That should increase the speed a bit. Edit: One could easily write it in C as a pyhon-extension, or plain C and then use ctypes:
And then the python-file:
|
||||
|
|