Poprawienie filtra i zmniejszenie rozmiaru miniaturek logo sponsorów.
authorMarek Stępniowski <marek@stepniowski.com>
Thu, 17 Dec 2009 15:56:34 +0000 (16:56 +0100)
committerMarek Stępniowski <marek@stepniowski.com>
Thu, 17 Dec 2009 15:56:34 +0000 (16:56 +0100)
apps/sponsors/models.py
apps/sponsors/processors.py

index 7b52b76..598d562 100644 (file)
@@ -13,7 +13,7 @@ class Sponsor(models.Model):
         _('logo'),
         upload_to='sponsors/sponsor/logo',
         thumbnail={
-            'size': (150, 75),
+            'size': (120, 60),
             'extension': 'png',
             'options': ['upscale', 'pad', 'detail'],
         })
index d954bf6..8c3d74c 100644 (file)
@@ -6,7 +6,8 @@ def add_padding(image, requested_size, opts):
         padded_image = Image.new('RGBA', requested_size, '#fff')
         width, height = image.size
         requested_width, requested_height = requested_size
-        padded_image.paste(image, (0, requested_height - height / 2))
+        print 'whatever'
+        padded_image.paste(image, (0, (requested_height - height) / 2))
         return padded_image
     return image