我想截圖,使用python,(僅限Windows)並保存! 我使用pyscreenshot庫和PIL在Windows上截圖並保存?
import numpy as np
import matplotlib.pyplot as plt
from PIL import ImageGrab
import pyscreenshot as ImageGrab
img = ImageGrab.grab()
plt.imshow(img, cmap='gray', interpolation='bicubic')
plt.save('img.png')
有什麼計劃?你的代碼的結果是什麼? –