-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathscreenshot_using_python.py
237 lines (175 loc) · 4.77 KB
/
screenshot_using_python.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import webbrowser, os
import datetime
import pyautogui
import time
from PIL import ImageTk,Image
import glob
import os.path
from tkinter import *
import win32gui
import win32con
tkWindow = Tk()
tkWindow.geometry('195x60')
tkWindow.geometry('+50+980')
tkWindow.title('capyture')
tkWindow.iconbitmap("icons/Untitled design.ico")
# uses win32gui and win32con
def windowEnumHandler(hwnd, top_windows):
top_windows.append((hwnd, win32gui.GetWindowText(hwnd)))
def bringToFront(window_name):
top_windows = []
win32gui.EnumWindows(windowEnumHandler, top_windows)
for i in top_windows:
# print(i[1])
if window_name.lower() in i[1].lower():
# print("found", window_name)
win32gui.ShowWindow(i[0], win32con.SW_SHOWNORMAL)
win32gui.SetForegroundWindow(i[0])
break
n=True
def removetitlebar():
global n
if n:
#with titlebar
tkWindow.overrideredirect(False)
tkWindow.geometry('240x60')
n=False
else:
# without title bar
tkWindow.overrideredirect(True)
tkWindow.geometry('195x60')
n=True
def minimizing():
removetitlebar()
tkWindow.overrideredirect(False)
tkWindow.wm_state('iconic')
tkWindow.iconify()
def screenshot():
#GET THE CURRENT DATE AND TIME
now = datetime.datetime.now()
now_str = time.strftime("%H.%M.%S")
minimizing()
time.sleep(0.5)
outFile = pyautogui.screenshot('ImageFile{}.PNG'.format(now_str))
tkWindow.after(0,tkWindow.focus_force)
if __name__ == "__main__":
winname = "capyture"
bringToFront(winname)
removetitlebar()
def imageviewer():
folder_path = r'C:/Users/user pc/Desktop/screenshotpy'
file_type = '/*PNG'
files = glob.glob(folder_path + file_type)
max_file = max(files, key=os.path.getctime) #path of latest file saved
path=max_file
webbrowser.open(os.path.realpath(path))
preview = Button(tkWindow,
text = 'P ',
font=50,
command = imageviewer,
activebackground="violet",
bg="light blue",
fg='dark blue',
)
capture = Button(tkWindow,
text = 'CAPTUR▷',
font=50,
command = screenshot,
activebackground="violet",
bg="light blue",
fg='dark blue',
)
tkWindow.attributes('-topmost',True)
tkWindow.overrideredirect(True)# for removing title bar
def Close():
tkWindow.destroy()
# Button for closing
exit_button = Button(tkWindow, text="X", command=Close,
font=50,
activebackground="red",
bg="light blue",
fg='dark blue',)
def openfolder():
path="C:/Users/user pc/Desktop/screenshotpy"
webbrowser.open(os.path.realpath(path))
folder_button =Button(tkWindow,text='F',command=openfolder,
font=50,
activebackground="red",
bg="light blue",
fg='dark blue',)
#telegram
def opentelegram():
path="D:/Telegram/Telegram.exe"
webbrowser.open(os.path.realpath(path))
telegram = PhotoImage(file='icons/telegram.png')
telegram_button=Button(tkWindow,
text="TELEGRAM",
image=telegram,compound=LEFT,
command=opentelegram,
activebackground="red",
bg="light green",
fg='dark blue',)
#whattsapp
def openwhattsapp():
path="C:/Users/user pc/AppData/Local/WhatsApp/WhatsApp.exe"
webbrowser.open(os.path.realpath(path))
whattsapp = PhotoImage(file='icons/whattsapp.png')
whattsapp_button=Button(tkWindow,
text="",
image=whattsapp,
command=openwhattsapp,
font=50,
activebackground="red",
bg="light green",
fg='dark blue',)
#edge
def openedge():
path="C:/Program Files (x86)/Microsoft/Edge/Application/msedge.exe"
webbrowser.open(os.path.realpath(path))
edge = PhotoImage(file='icons/edge.png')
edge_button=Button(tkWindow,
text="",
image=edge,
command=openedge,
font=50,
activebackground="red",
bg="light green",
fg='dark blue',)
def openvscode():
path="D:/Microsoft VS Code/Code.exe"
webbrowser.open(os.path.realpath(path))
vscode = PhotoImage(file='icons/vscode.png')
vscode_button=Button(tkWindow,
text="",
image=vscode,
command=openvscode,
font=50,
activebackground="red",
bg="light green",
fg='dark blue',)
#minimizing
minimizing_button=Button(tkWindow,
text="⇲",
font=60,
command=minimizing,
activebackground="red",
bg="light blue",
fg='dark blue',)
removetitlebar_button=Button(tkWindow,
text="▭",
font=60,
command=removetitlebar,
activebackground="red",
bg="light blue",
fg='dark blue',)
capture.grid(row=0, column=0)
preview.grid(row=0, column=1)
folder_button.grid(row=0, column=2)
minimizing_button.grid(row=0,column=3)
exit_button.grid(row=0, column=4)
telegram_button.grid(row=1,column=0)
whattsapp_button.grid(row=1,column=1)
edge_button.grid(row=1,column=2)
vscode_button.grid(row=1,column=3)
removetitlebar_button.grid(row=1,column=4)
tkWindow.mainloop()