Better cache. Better gc.

This commit is contained in:
Jason A. Donenfeld
2011-05-06 03:19:20 -04:00
parent 319ac51d60
commit 9220ea44b5
2 changed files with 15 additions and 7 deletions

View File

@ -146,6 +146,7 @@ class Photo(object):
right = image.size[0]
bottom = image.size[1] - ((image.size[1] - image.size[0]) / 2)
image = image.crop((left, top, right, bottom))
gc.collect()
image.thumbnail((size, size), Image.ANTIALIAS)
try:
image.save(thumb_path, "JPEG")