Last active
September 15, 2015 15:09
-
-
Save rectalogic/57b56f5dc5a31b5058a2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bounds_w = 100 | |
bounds_h = 100 | |
im_w, im_h = im.size | |
scales = (bounds_w / im_w, bounds_h / im_h) | |
if scale_type == "meet": | |
scale = min(scales) | |
elif scale_type == "fill": | |
scale = max(scales) | |
im = im.resize((int(im_w * scale), int(im_h * scale)), Image.ANTIALIAS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment