X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/0cefa871f6f1253be544a39c51e1f66f536805ce..0b32c81b837233ea59fdd1b5f19edc935f7b626d:/librarian/cover.py diff --git a/librarian/cover.py b/librarian/cover.py index a37b911..ff01841 100644 --- a/librarian/cover.py +++ b/librarian/cover.py @@ -4,7 +4,7 @@ # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # import re -import Image, ImageFont, ImageDraw, ImageFilter, ImageEnhance +from PIL import Image, ImageFont, ImageDraw, ImageFilter, ImageEnhance from StringIO import StringIO from librarian import get_resource, OutputFile, URLOpener @@ -258,7 +258,6 @@ class WLCover(Cover): super(WLCover, self).__init__(book_info, format=format, width=width, height=height) self.kind = book_info.kind self.epoch = book_info.epoch - self.with_logo = with_logo if book_info.cover_url: url = book_info.cover_url bg_src = None @@ -436,3 +435,12 @@ class GandalfCover(Cover): logo_bottom = 25 logo_width = 250 format = 'PNG' + +class FutureOfCopyrightCover(Cover): + width = 420 + height = 595 + background_img = 'cover.png' + format = 'PNG' + + def save(self, dest): + dest.write(open(self.background_img).read())