Skip to content

Instantly share code, notes, and snippets.

@omz
Created January 2, 2014 15:05
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save omz/8220546 to your computer and use it in GitHub Desktop.
Save omz/8220546 to your computer and use it in GitHub Desktop.
Untitled 4
import console
import clipboard
import os
img = clipboard.get_image()
if img:
img.save('temp.jpg')
console.quicklook('temp.jpg')
os.remove('temp.jpg')
else:
print 'No image in clipboard.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment