Created
February 9, 2014 05:23
-
-
Save vadimii/8894694 to your computer and use it in GitHub Desktop.
Thumbnail and end up with a square image
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
from PIL import Image | |
size = (36, 36) | |
image = Image.open(data) | |
image.thumbnail(size, Image.ANTIALIAS) | |
background = Image.new('RGBA', size, (255, 255, 255, 0)) | |
background.paste( | |
image, | |
((size[0] - image.size[0]) / 2, (size[1] - image.size[1]) / 2)) | |
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
from PIL import Image, ImageOps | |
thumb = ImageOps.fit(image, size, Image.ANTIALIAS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment