+ def __init__(self, author='', title=''):
+ self.author = author
+ self.title = title
+
+ def pretty_author(self):
+ return self.author
+
+ def pretty_title(self):
+ return self.title
+
+ def image(self):
+ img = Image.new('RGB', (self.width, self.height), self.background_color)
+
+ if self.background_img:
+ background = Image.open(self.background_img)
+ try:
+ img.paste(background, None, background)
+ except ValueError, e:
+ img.paste(background)
+ del background
+
+ # WL logo
+ if self.logo_width:
+ logo = Image.open(get_resource('res/wl-logo.png'))
+ logo = logo.resize((self.logo_width, logo.size[1] * self.logo_width / logo.size[0]))
+ img.paste(logo, ((self.width - self.logo_width) / 2, img.size[1] - logo.size[1] - self.logo_bottom))
+
+ author_font = self.author_font or ImageFont.truetype(get_resource('fonts/DejaVuSerif.ttf'), 30)
+ author_shortener = None if self.author_wrap else self.person_shortener
+ title_y = self.draw_text(self.pretty_author(), img, author_font, self.author_align, author_shortener,
+ self.author_margin_left, self.width - self.author_margin_left - self.author_margin_right, self.author_top,
+ self.author_lineskip, self.author_color, self.author_shadow) + self.title_top
+ title_shortener = None if self.title_wrap else self.title_shortener
+ title_font = self.title_font or ImageFont.truetype(get_resource('fonts/DejaVuSerif.ttf'), 40)
+ self.draw_text(self.pretty_title(), img, title_font, self.title_align, title_shortener,
+ self.title_margin_left, self.width - self.title_margin_left - self.title_margin_right, title_y,
+ self.title_lineskip, self.title_color, self.title_shadow)
+
+ return img
+
+ def mime_type(self):
+ return self.mime_types[self.format]
+
+ def ext(self):
+ return self.exts[self.format]
+
+ def save(self, *args, **kwargs):
+ return self.image().save(format=self.format, *args, **kwargs)
+
+
+
+class VirtualoCover(Cover):
+ width = 600
+ height = 730
+ author_top = 73
+ title_top = 73
+ logo_bottom = 25
+ logo_width = 250
+
+
+class PrestigioCover(Cover):
+ width = 580
+ height = 783
+ background_img = get_resource('res/cover-prestigio.png')
+
+ author_top = 446
+ author_margin_left = 118
+ author_margin_right = 62
+ author_lineskip = 60
+ author_color = '#fff'
+ author_shadow = '#000'
+ author_font = ImageFont.truetype(get_resource('fonts/JunicodeWL-Italic.ttf'), 50)
+
+ title_top = 0
+ title_margin_left = 118
+ title_margin_right = 62
+ title_lineskip = 60
+ title_color = '#fff'
+ title_shadow = '#000'
+ title_font = ImageFont.truetype(get_resource('fonts/JunicodeWL-Italic.ttf'), 50)
+
+ def pretty_title(self):
+ return u"„%s”" % self.title
+
+
+class BookotekaCover(Cover):
+ width = 2140
+ height = 2733
+ background_img = get_resource('res/cover-bookoteka.png')
+
+ author_top = 480
+ author_margin_left = 307
+ author_margin_right = 233
+ author_lineskip = 156
+ author_color = '#d9d919'
+ author_font = ImageFont.truetype(get_resource('fonts/JunicodeWL-Regular.ttf'), 130)
+
+ title_top = 400
+ title_margin_left = 307
+ title_margin_right = 233
+ title_lineskip = 168
+ title_color = '#d9d919'
+ title_font = ImageFont.truetype(get_resource('fonts/JunicodeWL-Regular.ttf'), 140)
+
+ format = 'PNG'
+
+
+class GandalfCover(Cover):
+ width = 600
+ height = 730
+ background_img = get_resource('res/cover-gandalf.png')
+ author_font = ImageFont.truetype(get_resource('fonts/JunicodeWL-Regular.ttf'), 30)
+ title_font = ImageFont.truetype(get_resource('fonts/JunicodeWL-Regular.ttf'), 40)
+ logo_bottom = 25
+ logo_width = 250
+ format = 'PNG'