+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
from PIL import Image, ImageFilter, ImageChops
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