From ba4743506884986c2654229375bb6f266f8e34fe Mon Sep 17 00:00:00 2001 From: CactiChameleon9 Date: Mon, 15 Mar 2021 07:48:01 +0000 Subject: [PATCH] reorganise --- test.py => Client/mirrorClientScreen.py | 0 testpillow.py | 11 ----------- 2 files changed, 11 deletions(-) rename test.py => Client/mirrorClientScreen.py (100%) delete mode 100644 testpillow.py diff --git a/test.py b/Client/mirrorClientScreen.py similarity index 100% rename from test.py rename to Client/mirrorClientScreen.py diff --git a/testpillow.py b/testpillow.py deleted file mode 100644 index f478816..0000000 --- a/testpillow.py +++ /dev/null @@ -1,11 +0,0 @@ -import tkinter -from PIL import ImageGrab - -bbox=(0,0,tkinter.Tk().winfo_screenheight(),tkinter.Tk().winfo_screenwidth()) -image = ImageGrab.grab(bbox) -image.save('sc.jpg',optimize=True,quality=30) - -# from PIL import ImageGrab -# image = ImageGrab.grab(bbox=(0,0,700,800)) -# image.save('sc.jpg',optimize=True,quality=30) -