Created
June 21, 2012 15:24
-
-
Save enagorny/2966369 to your computer and use it in GitHub Desktop.
PIL scale with whitespace adding
This file contains hidden or 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
def scale(image, max_size, method=Image.ANTIALIAS): | |
""" | |
resize 'image' to 'max_size' keeping the aspect ratio | |
and place it in center of white 'max_size' image | |
""" | |
im_aspect = float(image.size[0])/float(image.size[1]) | |
out_aspect = float(max_size[0])/float(max_size[1]) | |
if im_aspect >= out_aspect: | |
scaled = image.resize((max_size[0], int((float(max_size[0])/im_aspect) + 0.5)), method) | |
else: | |
scaled = image.resize((int((float(max_size[1])*im_aspect) + 0.5), max_size[1]), method) | |
offset = (((max_size[0] - scaled.size[0]) / 2), ((max_size[1] - scaled.size[1]) / 2)) | |
back = Image.new("RGB", max_size, "white") | |
back.paste(big, offset) | |
return back |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You had some small errors in your code. See https://gist.github.com/fabeat/6621507