PIL是Python Imaging Imaging Library,它为python解释器提供图像编辑函数
能力。 ImageGrab模块可用于将屏幕或剪贴板的内容复制到PIL图像存储器中。
能力。 ImageGrab模块可用于将屏幕或剪贴板的内容复制到PIL图像存储器中。
PIL.ImageGrab.grabclipboard()
方法拍摄剪贴板图像的快照(如果有)。
用法: PIL.ImageGrab.grabclipboard()
参数:没有参数
返回:在Windows上,为图像,文件名列表,如果剪贴板不包含图像数据或文件名,则为None。
注意:该模块仅适用于Windows和Mac OS。
# Importing Image and ImageGrab module from PIL package
from PIL import Image, ImageGrab
# using the grabclipboard method
im = ImageGrab.grabclipboard()
im.show()
输出:
更改剪贴板上的图像后
# Importing Image and ImageGrab module from PIL package
from PIL import Image, ImageGrab
# using the grabclipboard method
im = ImageGrab.grabclipboard()
im.show()
输出:
相关用法
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python sys.getrecursionlimit()用法及代码示例
- Python PIL eval()用法及代码示例
- Python sympy.rf()用法及代码示例
- Python os.waitid()用法及代码示例
- Python os.WIFEXITED()用法及代码示例
- Python os.scandir()用法及代码示例
- Python PIL getpalette()用法及代码示例
- Python sympy.ff()用法及代码示例
- Python Decimal max()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python os.sync()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python PIL | ImageGrab.grabclipboard() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。