Answers for "python get image and text in the clipboard"

3

python clipboard to image

from PIL import ImageGrab
image = ImageGrab.grabclipboard()
image.save('clipboard.jpg','JPG')
Posted by: Guest on October-18-2020

Code answers related to "python get image and text in the clipboard"

Python Answers by Framework

Browse Popular Code Answers by Language