Poprawienie filtra i zmniejszenie rozmiaru miniaturek logo sponsorów.
[wolnelektury.git] / apps / sponsors / processors.py
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