我最近开始学习python编程并遇到了我的第一个程序的一些问题。这是一个自动保存打印屏幕的程序。
如果我在剪贴板中保存了打印屏幕并启动程序,则会输出.png文件。 如果我在剪贴板中没有任何内容的情况下启动程序,然后按打印屏幕则会输出.png文件。
但是如果我在程序已经打印出.png文件后按下打印屏幕,它什么也没做。甚至无法使用ctrl + c复制文本。
这是我正在使用的代码。
from PIL import ImageGrab
from Tkinter import Tk
import time
r = Tk()
while True:
try:
im = ImageGrab.grabclipboard()
date = time.strftime("%Y-%m-%d %H.%M.%S")
im.save(date + ".png")
r.clipboard_clear()
except IOError:
pass
except AttributeError:
pass
答案 0 :(得分:1)
两点:
使用Tkinter时,它已经有一个主循环(例如while True:
)。当您创建自己的主循环时,可以阻止Tkinter进行应该进行的处理。
你真正想要做的是更多的事情:
import Tkinter as tk
from PIL import Image, ImageGrab
root = tk.Tk()
last_image = None
def grab_it():
global last_image
im = ImageGrab.grabclipboard()
# Only want to save images if its a new image and is actually an image.
# Not sure if you can compare Images this way, though - check the PIL docs.
if im != last_image and isinstance(im, Image):
last_image = im
im.save('filename goes here')
# This will inject your function call into Tkinter's mainloop.
root.after(100, grab_it)
grab_it() # Starts off the process
答案 1 :(得分:0)
如果你想拍摄一张屏幕图像,你应该使用grab()
from PIL import ImageGrab
im = ImageGrab.grab()
im.save("save.png")