python clipboard to image

Solutions on MaxInterview for python clipboard to image by the best coders in the world

showing results for - "python clipboard to image"
Jason
30 Mar 2020
1from PIL import ImageGrab
2image = ImageGrab.grabclipboard()
3image.save('clipboard.jpg','JPG')