user36026
user36026

Reputation: 21

Autopy screen capture on OSX

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

Answers (1)

nneonneo
nneonneo

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

Related Questions