Python Clipboard ke gambar

from PIL import ImageGrab
image = ImageGrab.grabclipboard()
image.save('clipboard.jpg','JPG')
IJustWannaHelp