s3imageresizer
A python module to import and resize pictures into amazon S3 storage.
Synopsis
Typical usecase: fetch a bunch of image and generate thumbnails of various sizes for each of them, stored in S3.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
from s3imageresizer import S3ImageResizer from boto import s3 s3_conn = s3.connect_to_region(...) # Initialize an S3ImageResizer: i = S3ImageResizer(s3_conn) urls = [ 'http://www.gokqsw.com/images/picture/picture-3.jpg', 'http://www.gokqsw.com/images/picture/picture-4.jpg' ] for url in urls: # Fetch image into memory i.fetch(url) # Apply the image EXIF rotation, if any i.orientate() # Resize this image, store it to S3 and return its url url1 = i.resize( width=200 ).store( in_bucket='my-images', key_name='image-w200-jpg' ) # Do it again, with a different size url2 = i.resize( height=400 ).store( in_bucket='my-images', key_name='image-h200-jpg' ) |
More explanation
For method parameters, see the code (there isn’t much of it 😉
S3ImageResizer does all image operations in-memory, without writing images to disk.
S3ImageResizer uses PIL, has reasonable defaults for downsizing images and handle images with alpha channels nicely.
Installation
s3imageresizer requires Pillow, which in turn needs external libraries. On ubuntu, you would for example need:
1 2 |
sudo apt-get install libjpeg8 libjpeg8-dev libopenjpeg-dev |
Then
1 2 |
pip install s3imageresizer |