0

ほとんどの上級 Mac ユーザーが知っているように、スクリーンショットを撮る簡単な方法があります。例として、command-shift-4 を使用して画面の一部を取得します。しかし、たとえば python スクリプトからこの機能を使用する可能性はありますか?

Python (または他の言語) からスクリーン キャプチャを取得することに関する他のスレッドを見てきましたが、スクリプトから組み込み機能を使用して、出力を使用する方法はありますか?

4

1 に答える 1

2

You can call the terminal command screencapture

This can be invoked from a python script (or other script):

import os;
os.system("screencapture /tmp/test.jpg");
#### do your stuff with the file
于 2012-06-03T10:30:21.917 に答える