1 # -*- coding: utf-8 -*-
3 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 from __future__ import unicode_literals
9 from PIL import Image, ImageFont, ImageDraw, ImageFilter
10 from six import BytesIO
11 from librarian import get_resource, OutputFile, URLOpener
15 """Gets metrics from an object, scaling it by a factor."""
16 def __init__(self, obj, scale):
18 self._scale = float(scale)
20 def __getattr__(self, name):
21 src = getattr(self._obj, name)
22 if src and self._scale:
23 return type(src)(self._scale * src)
28 class TextBox(object):
29 """Creates an Image with a series of centered strings."""
35 def __init__(self, max_width, max_height, padding_x=None, padding_y=None):
37 padding_x = self.SHADOW_X + self.SHADOW_BLUR
39 padding_y = self.SHADOW_Y + self.SHADOW_BLUR
41 self.max_width = max_width
42 self.max_text_width = max_width - 2 * padding_x
43 self.padding_y = padding_y
44 self.height = padding_y
45 self.img = Image.new('RGBA', (max_width, max_height))
46 self.draw = ImageDraw.Draw(self.img)
47 self.shadow_img = None
48 self.shadow_draw = None
50 def skip(self, height):
51 """Skips some vertical space."""
54 def text(self, text, color='#000', font=None, line_height=20,
56 """Writes some centered text."""
57 text = re.sub(r'\s+', ' ', text)
59 if not self.shadow_img:
60 self.shadow_img = Image.new('RGBA', self.img.size)
61 self.shadow_draw = ImageDraw.Draw(self.shadow_img)
64 line_width = self.draw.textsize(line, font=font)[0]
65 while line_width > self.max_text_width:
66 parts = line.rsplit(' ', 1)
68 line_width = self.max_text_width
71 line_width = self.draw.textsize(line, font=font)[0]
72 line = line.strip() + ' '
74 pos_x = (self.max_width - line_width) // 2
77 self.shadow_draw.text(
78 (pos_x + self.SHADOW_X, self.height + self.SHADOW_Y),
79 line, font=font, fill=shadow_color
82 self.draw.text((pos_x, self.height), line, font=font, fill=color)
83 self.height += line_height
85 text = text[len(line):]
88 """Creates the actual Image object."""
89 image = Image.new('RGBA', (self.max_width,
90 self.height + self.padding_y))
92 shadow = self.shadow_img.filter(ImageFilter.BLUR)
93 image.paste(shadow, (0, 0), shadow)
94 image.paste(self.img, (0, 0), self.img)
96 image.paste(self.img, (0, 0))
101 """Abstract base class for cover images generator."""
104 background_color = '#fff'
105 background_img = None
108 author_margin_left = 20
109 author_margin_right = 20
111 author_color = '#000'
113 author_font_ttf = get_resource('fonts/DejaVuSerif.ttf')
114 author_font_size = 30
117 title_margin_left = 20
118 title_margin_right = 20
122 title_font_ttf = get_resource('fonts/DejaVuSerif.ttf')
127 uses_dc_cover = False
139 'JPEG': 'image/jpeg',
143 def __init__(self, book_info, format=None, width=None, height=None):
144 self.author = ", ".join(auth.readable() for auth in book_info.authors)
145 self.title = book_info.title
146 if format is not None:
149 self.height = int(round(height * self.width / width))
150 scale = max(float(width or 0) / self.width, float(height or 0) / self.height)
154 self.scale_after = scale
156 def pretty_author(self):
157 """Allows for decorating author's name."""
160 def pretty_title(self):
161 """Allows for decorating title."""
165 metr = Metric(self, self.scale)
166 img = Image.new('RGB', (metr.width, metr.height), self.background_color)
168 if self.background_img:
169 background = Image.open(self.background_img)
170 img.paste(background, None, background)
175 logo = Image.open(get_resource('res/wl-logo.png'))
176 logo = logo.resize((metr.logo_width, int(round(logo.size[1] * metr.logo_width / logo.size[0]))))
177 img.paste(logo, ((metr.width - metr.logo_width) // 2, img.size[1] - logo.size[1] - metr.logo_bottom))
179 top = metr.author_top
181 metr.width - metr.author_margin_left - metr.author_margin_right,
185 author_font = ImageFont.truetype(
186 self.author_font_ttf, metr.author_font_size)
187 tbox.text(self.pretty_author(), self.author_color, author_font, metr.author_lineskip, self.author_shadow)
188 text_img = tbox.image()
189 img.paste(text_img, (metr.author_margin_left, top), text_img)
191 top += text_img.size[1] + metr.title_top
193 metr.width - metr.title_margin_left - metr.title_margin_right,
196 title_font = ImageFont.truetype(
197 self.title_font_ttf, metr.title_font_size)
198 tbox.text(self.pretty_title(), self.title_color, title_font, metr.title_lineskip, self.title_shadow)
199 text_img = tbox.image()
200 img.paste(text_img, (metr.title_margin_left, top), text_img)
204 def final_image(self):
206 if self.scale_after != 1:
208 int(round(img.size[0] * self.scale_after)),
209 int(round(img.size[1] * self.scale_after))),
214 return self.mime_types[self.format]
217 return self.exts[self.format]
219 def save(self, *args, **kwargs):
221 'format': self.format,
224 default_kwargs.update(kwargs)
225 return self.final_image().save(*args, **default_kwargs)
227 def output_file(self, *args, **kwargs):
229 self.save(imgstr, *args, **kwargs)
230 return OutputFile.from_bytes(imgstr.getvalue())
233 class WLCover(Cover):
234 """Wolne Lektury cover without logos."""
238 author_font_ttf = get_resource('fonts/JunicodeWL-Regular.ttf')
239 author_font_size = 20
241 title_font_ttf = get_resource('fonts/DejaVuSerif-Bold.ttf')
244 title_box_width = 350
247 box_bottom_margin = 100
260 box_position = 'middle'
261 background_color = '#444'
262 author_color = '#444'
263 background_img = get_resource('res/cover.png')
267 u'Starożytność': '#9e3610',
268 u'Średniowiecze': '#564c09',
269 u'Renesans': '#8ca629',
271 u'Oświecenie': '#f2802e',
272 u'Romantyzm': '#db4b16',
273 u'Pozytywizm': '#961060',
274 u'Modernizm': '#7784e0',
275 u'Dwudziestolecie międzywojenne': '#3044cf',
276 u'Współczesność': '#06393d',
279 kind_box_position = {
284 def __init__(self, book_info, format=None, width=None, height=None, bleed=0):
285 super(WLCover, self).__init__(book_info, format=format, width=width, height=height)
287 self.box_position = book_info.cover_box_position or \
288 self.kind_box_position.get(book_info.kind, self.box_position)
290 if book_info.cover_bar_color == 'none':
293 self.bar_color = book_info.cover_bar_color or \
294 self.epoch_colors.get(book_info.epoch, self.bar_color)
296 self.title_color = self.epoch_colors.get(book_info.epoch, self.title_color)
299 self.box_top_margin += bleed
300 self.box_bottom_margin += bleed
301 self.bar_width += bleed
303 if book_info.cover_url:
304 url = book_info.cover_url
307 bg_src = URLOpener().open(url)
308 self.background_img = BytesIO(bg_src.read())
311 def pretty_author(self):
312 return self.author.upper()
314 def add_box(self, img):
315 if self.box_position == 'none':
318 metr = Metric(self, self.scale)
321 box = TextBox(metr.title_box_width, metr.height, padding_y=metr.box_padding_y)
322 author_font = ImageFont.truetype(
323 self.author_font_ttf, metr.author_font_size)
324 box.text(self.pretty_author(),
326 line_height=metr.author_lineskip,
327 color=self.author_color,
328 shadow_color=self.author_shadow)
330 box.skip(metr.box_above_line)
331 box.draw.line((metr.box_line_left, box.height, metr.box_line_right, box.height),
332 fill=self.author_color, width=metr.box_line_width)
333 box.skip(metr.box_below_line)
336 title_font = ImageFont.truetype(
337 self.title_font_ttf, metr.title_font_size)
338 box.text(self.pretty_title(),
339 line_height=metr.title_lineskip,
341 color=self.title_color,
342 shadow_color=self.title_shadow)
344 box_img = box.image()
347 if self.box_position == 'top':
348 box_top = metr.box_top_margin
349 elif self.box_position == 'bottom':
350 box_top = metr.height - metr.box_bottom_margin - box_img.size[1]
352 box_top = (metr.height - box_img.size[1]) // 2
354 box_left = metr.bar_width + (metr.width - metr.bar_width - box_img.size[0]) // 2
356 # Draw the white box.
357 ImageDraw.Draw(img).rectangle(
358 (box_left, box_top, box_left + box_img.size[0], box_top + box_img.size[1]), fill='#fff')
359 # Paste the contents into the white box.
360 img.paste(box_img, (box_left, box_top), box_img)
363 def add_cut_lines(self, img):
367 metr = Metric(self, self.scale)
368 draw = ImageDraw.Draw(img)
369 for corner_x, corner_y in ((0, 0), (metr.width, 0), (0, metr.height), (metr.width, metr.height)):
370 dir_x = 1 if corner_x == 0 else -1
371 dir_y = 1 if corner_y == 0 else -1
372 for offset in (-1, 0, 1):
373 draw.line((corner_x, corner_y + dir_y * metr.bleed + offset,
374 corner_x + dir_x * metr.bleed * line_ratio, corner_y + dir_y * metr.bleed + offset),
375 fill='black' if offset == 0 else 'white', width=1)
376 draw.line((corner_x + dir_x * metr.bleed + offset, corner_y,
377 corner_x + dir_x * metr.bleed + offset, corner_y + dir_y * metr.bleed * line_ratio),
378 fill='black' if offset == 0 else 'white', width=1)
382 metr = Metric(self, self.scale)
383 img = Image.new('RGB', (metr.width, metr.height), self.background_color)
384 draw = ImageDraw.Draw(img)
386 draw.rectangle((0, 0, metr.bar_width, metr.height), fill=self.bar_color)
388 if self.background_img:
389 src = Image.open(self.background_img)
390 trg_size = (metr.width - metr.bar_width, metr.height)
391 if src.size[0] * trg_size[1] < src.size[1] * trg_size[0]:
394 int(round(src.size[1] * trg_size[0] / src.size[0]))
396 cut = (resized[1] - trg_size[1]) // 2
397 src = src.resize(resized, Image.ANTIALIAS)
398 src = src.crop((0, cut, src.size[0], src.size[1] - cut))
401 int(round(src.size[0] * trg_size[1] / src.size[1])),
404 cut = (resized[0] - trg_size[0]) // 2
405 src = src.resize(resized, Image.ANTIALIAS)
406 src = src.crop((cut, 0, src.size[0] - cut, src.size[1]))
408 img.paste(src, (metr.bar_width, 0))
411 img = self.add_box(img)
413 # img = self.add_cut_lines(img)
418 class WLNoBoxCover(WLCover):
419 def add_box(self, img):
423 class LogoWLCover(WLCover):
425 gradient_logo_height = 60
426 gradient_logo_margin_right = 30
427 gradient_logo_spacing = 40
428 gradient_color = '#000'
429 gradient_opacity = .6
431 'res/wl-logo-white.png',
432 'res/fnp-logo-white.png',
435 def __init__(self, *args, **kwargs):
436 super(LogoWLCover, self).__init__(*args, **kwargs)
437 self.gradient_height += self.bleed
438 self.gradient_logo_margin_right += self.bleed
441 img = super(LogoWLCover, self).image()
442 metr = Metric(self, self.scale)
443 gradient = Image.new('RGBA', (metr.width - metr.bar_width, metr.gradient_height), self.gradient_color)
444 gradient_mask = Image.new('L', (metr.width - metr.bar_width, metr.gradient_height))
445 draw = ImageDraw.Draw(gradient_mask)
446 for line in range(0, metr.gradient_height):
448 (0, line, metr.width - metr.bar_width, line),
449 fill=int(255 * self.gradient_opacity * line / metr.gradient_height))
450 img.paste(gradient, (metr.bar_width, metr.height - metr.gradient_height), mask=gradient_mask)
452 cursor = metr.width - metr.gradient_logo_margin_right
453 logo_top = int(metr.height - metr.gradient_height / 2 - metr.gradient_logo_height / 2 - metr.bleed / 2)
454 for logo_path in self.gradient_logos[::-1]:
455 logo = Image.open(get_resource(logo_path))
457 (int(round(logo.size[0] * metr.gradient_logo_height / logo.size[1])), metr.gradient_logo_height),
459 cursor -= logo.size[0]
460 img.paste(logo, (cursor, logo_top), mask=logo)
461 cursor -= metr.gradient_logo_spacing
466 class EbookpointCover(LogoWLCover):
467 gradient_logo_height = 58
468 gradient_logo_spacing = 25
470 'res/ebookpoint-logo-white.png',
471 'res/wl-logo-white.png',
472 'res/fnp-logo-white.png',
476 class VirtualoCover(Cover):
485 class PrestigioCover(Cover):
488 background_img = get_resource('res/cover-prestigio.png')
491 author_margin_left = 118
492 author_margin_right = 62
494 author_color = '#fff'
495 author_shadow = '#000'
496 author_font_ttf = get_resource('fonts/JunicodeWL-Italic.ttf')
497 author_font_size = 50
500 title_margin_left = 118
501 title_margin_right = 62
504 title_shadow = '#000'
505 title_font_ttf = get_resource('fonts/JunicodeWL-Italic.ttf')
508 def pretty_title(self):
509 return u"„%s”" % self.title
512 class BookotekaCover(Cover):
515 background_img = get_resource('res/cover-bookoteka.png')
518 author_margin_left = 307
519 author_margin_right = 233
520 author_lineskip = 156
521 author_color = '#d9d919'
522 author_font_ttf = get_resource('fonts/JunicodeWL-Regular.ttf')
523 author_font_size = 130
526 title_margin_left = 307
527 title_margin_right = 233
529 title_color = '#d9d919'
530 title_font_ttf = get_resource('fonts/JunicodeWL-Regular.ttf')
531 title_font_size = 140
536 class GandalfCover(Cover):
539 background_img = get_resource('res/cover-gandalf.png')
540 author_font_ttf = get_resource('fonts/JunicodeWL-Regular.ttf')
541 author_font_size = 30
542 title_font_ttf = get_resource('fonts/JunicodeWL-Regular.ttf')
549 class KMLUCover(LogoWLCover):
550 gradient_logo_height = 58
551 gradient_logo_spacing = 25
553 'res/kmlu-logo-white.png',
554 'res/wl-logo-white.png',
555 'res/fnp-logo-white.png',
559 class MPWCover(LogoWLCover):
560 gradient_logo_height = 58
561 gradient_logo_spacing = 25
563 'res/mpw-logo-white.png',
564 'res/wl-logo-white.png',
565 'res/fnp-logo-white.png',
569 class AtriumCover(LogoWLCover):
570 gradient_logo_height = 58
571 gradient_logo_spacing = 25
573 'res/atrium-logo.png',
574 'res/wl-logo-white.png',
575 'res/fnp-logo-white.png',
580 'default': LogoWLCover,
583 'atrium': AtriumCover,
587 def make_cover(book_info, *args, **kwargs):
588 if 'cover_class' in kwargs:
589 cover_class_name = kwargs.pop('cover_class')
591 cover_class_name = book_info.cover_class
592 cover_class = COVER_CLASSES[cover_class_name]
593 return cover_class(book_info, *args, **kwargs)