Skip to content

Instantly share code, notes, and snippets.

@olooney
Created January 12, 2012 16:31
Show Gist options
  • Star 29 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save olooney/1601455 to your computer and use it in GitHub Desktop.
Save olooney/1601455 to your computer and use it in GitHub Desktop.
A "better" thumbnail algorithm for Python Image Library PIL Image
'''
PIL's Image.thumbnail() returns an image that fits inside of a given size (preserving aspect ratios)
but the size of the actual image will vary and is certainly not guaranteed to be the requested size.
This is often inconvenient since the size of the returned thumbnail cannot be predicted. The django-thumbs
library solves this for square thumbnails by cropping the image to a square and then resizing it. However,
this only works for exact squares.
This function generalizes that approach to work for thumbnails of any aspect ratio. The returned thumbnail
is always exactly the requested size, and edges (left/right or top/bottom) are cropped off to adjust to
make sure the thumbnail will be the right size without distorting the image.
'''
# TODO: this is only used for the Image.ANTIALIAS constant. seems kind of trivial...
from PIL import Image
def flat( *nums ):
'Build a tuple of ints from float or integer arguments. Useful because PIL crop and resize require integer points.'
return tuple( int(round(n)) for n in nums )
class Size(object):
def __init__(self, pair):
self.width = float(pair[0])
self.height = float(pair[1])
@property
def aspect_ratio(self):
return self.width / self.height
@property
def size(self):
return flat(self.width, self.height)
def cropped_thumbnail(img, size):
'''
Builds a thumbnail by cropping out a maximal region from the center of the original with
the same aspect ratio as the target size, and then resizing. The result is a thumbnail which is
always EXACTLY the requested size and with no aspect ratio distortion (although two edges, either
top/bottom or left/right depending whether the image is too tall or too wide, may be trimmed off.)
'''
original = Size(img.size)
target = Size(size)
if target.aspect_ratio > original.aspect_ratio:
# image is too tall: take some off the top and bottom
scale_factor = target.width / original.width
crop_size = Size( (original.width, target.height / scale_factor) )
top_cut_line = (original.height - crop_size.height) / 2
img = img.crop( flat(0, top_cut_line, crop_size.width, top_cut_line + crop_size.height) )
elif target.aspect_ratio < original.aspect_ratio:
# image is too wide: take some off the sides
scale_factor = target.height / original.height
crop_size = Size( (target.width/scale_factor, original.height) )
side_cut_line = (original.width - crop_size.width) / 2
img = img.crop( flat(side_cut_line, 0, side_cut_line + crop_size.width, crop_size.height) )
return img.resize(target.size, Image.ANTIALIAS)
@sadjad
Copy link

sadjad commented May 9, 2013

Great, thanks.

Copy link

ghost commented Aug 23, 2013

Thanks Bro!

@osharim
Copy link

osharim commented Dec 31, 2013

Hey , Thanks bro , it works like a charm.

@stuntgoat
Copy link

Awesome!

@raowl
Copy link

raowl commented Feb 2, 2014

thanks!

@AnimeApproved
Copy link

sugoi!!

@kythanh
Copy link

kythanh commented Mar 21, 2016

Thanks!

@z4c
Copy link

z4c commented Jul 28, 2016

You just saved 15 minutes of my time and some paper, Thanks !

@VictorArias24
Copy link

thank you very much, excellent

@evansmwendwa
Copy link

8 years ago and still helpful

@Pankaj-Gupta
Copy link

Pankaj-Gupta commented Jun 15, 2021

thanks for this.
Would just add one more line to cropped_thumbnail() function

img = ImageOps.exif_transpose(img)

This handles the scenarios where sometimes PIL reads and rotates the images.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment