回答編集履歴

1

修正

2020/04/07 09:07

投稿

tiitoi
tiitoi

スコア21956

test CHANGED
@@ -9,3 +9,39 @@
9
9
 
10
10
 
11
11
  [ImageGrab Module (OS X and Windows only) — Pillow (PIL Fork) 3.0.0 documentation](https://pillow.readthedocs.io/en/3.0.x/reference/ImageGrab.html)
12
+
13
+
14
+
15
+ ## 追記
16
+
17
+
18
+
19
+ > 修正しましたがエラーは直りませんでした
20
+
21
+
22
+
23
+ どのように修正したのでしょうか。
24
+
25
+ 以下のコードで Windows 環境、Pillow 4.0.0 でスクリーンショットを取得できることを確認しました。
26
+
27
+
28
+
29
+ ```python
30
+
31
+ from PIL import ImageGrab
32
+
33
+
34
+
35
+ # スクリーンショットを取得する
36
+
37
+ img = ImageGrab.grab()
38
+
39
+
40
+
41
+ # 送信するなら Image オブジェクトをバイト列にする
42
+
43
+ binary = img.tobytes()
44
+
45
+ print(len(binary))
46
+
47
+ ```