スクリーンショット保存
2014/12/30
Python2.6.7
# -*- coding: utf-8 -*-
import ImageGrab
def main():
img = ImageGrab.grab()
img.save('hogehoge.png')
if __name__ == '__main__':
main()
Pythonでスクリーンショットを撮る(Windowsのみ)
http://blog.livedoor.jp/baruth_/archives/19351491.html
Python を使ってスクリーンキャプチャ
http://kshigeru.blogspot.jp/2011/02/screen-capture-using-python.html