现在有没有人如何找到存储我的桌面背景的目录,或者它只是存储在我用于我的 BG 的实际图像的位置
这是我希望保存图像并成为运行 Windows XP 的我的桌面 BG 的代码
import os
import sys
import time
import Image
import ImageGrab
import webbrowser
webbrowser.open_new(input("Gimme URL: "))
SaveDirectory=r'C:\Documents and Settings\User\My Documents\My Pictures'
ImageEditorPath=r'C:\WINDOWS\system32\mspaint.exe'
img=ImageGrab.grab()
box = (100, 100, 400, 400)
region = img.crop(box)
saveas=os.path.join(SaveDirectory,'ScreenShot_'+time.strftime('%Y_%m_%d_%H_%M_%S')+'.png')
img.save(saveas)
editorstring='""%s" "%s"'% (ImageEditorPath,saveas)
os.system(editorstring)