X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/74488bcce98f59ac255fa342ff61def2251ebdb5..f030289137a031a2e78f9aadb9ce075d8de76649:/apps/sponsors/processors.py diff --git a/apps/sponsors/processors.py b/apps/sponsors/processors.py index d954bf622..112241d96 100644 --- a/apps/sponsors/processors.py +++ b/apps/sponsors/processors.py @@ -1,3 +1,7 @@ +# -*- 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 @@ -6,7 +10,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