Tag Archives: Python
Resizing Django ImageField with Remote Storage
Recently I’ve been working on a project to move our photo experience to store images on Amazon’s S3 service instead of the local server, in hopes to gain performance and move away from handling the maintenance static files tend to have. There … Continue reading
5 Comments
Posted in Amazon S3, Django, PIL, Python
Tagged Amazon S3, Django, django-storage, PIL, Python
Posted in Amazon S3, Django, PIL, Python
Tagged Amazon S3, Django, django-storage, PIL, Python
PIL Image from Url
Had some troubles finding what seemed to be such an easy Google search. Needed the capability to load an image based on a url. Here is my solution: [code] import urllib2 as urllib from PIL import Image from cStringIO import … Continue reading