Reputation: 21
I'm using Autopy on osx 10.7.4 and everything in the module works except for the capture_screen method. Whenever I use it to capture the screen the image it saves is just completely black. Why would this be?
Upvotes: 2
Views: 913
Reputation: 179392
Known bug: https://github.com/msanders/autopy/issues/32
Instead of autopy, you can just use the screencapture
OS X utility through os.system
:
os.system("screencapture foo.png")
Upvotes: 2