Skip to content

Instantly share code, notes, and snippets.

Created April 1, 2014 13:10
Show Gist options
  • Save anonymous/9913674 to your computer and use it in GitHub Desktop.
Save anonymous/9913674 to your computer and use it in GitHub Desktop.
Pasted from IPython
from PIL import Image
fi = Image.open('f23bf11c-aa22-419b-855b-ab0b9f1f5cb3-SRV_0122.jpg')
fi.size()
fi.size
fi = Image.open('bd654b14-87a5-4ff3-868f-bd72b5121c49-IMG_9941.jpg')
fi.size
5184.0/3456
3456.0/5184
float(1024*3456) / 5184
fi.resize((1024,683), Image.ANTIALIAS)
fi = fi.resize((1024,683), Image.ANTIALIAS)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment