

# https://www.globalsino.com/ICs/
# Save the image in clipboard to an image file


from PIL import ImageGrab

im = ImageGrab.grabclipboard()

im.save(r"C:\0Python\text.png",'PNG')


