Skip to content

Instantly share code, notes, and snippets.

@keimina
Created December 14, 2013 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keimina/7955163 to your computer and use it in GitHub Desktop.
Save keimina/7955163 to your computer and use it in GitHub Desktop.
from PIL import Image
pil_im = Image.open('./data/empire.jpg').convert('L')
#be careful it may change aspect ratio
out = pil_im.resize((128,128))
#show
out.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment