Answers for "save image from clipboard python"

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 "save image from clipboard python"

Python Answers by Framework

Browse Popular Code Answers by Language