Refactored code into a class

This commit is contained in:
Roberto Alsina 2023-05-15 21:19:13 -03:00
parent 0f24727e2d
commit 3ead11f863
2 changed files with 107 additions and 96 deletions

BIN
HackNerdFont-Regular.ttf Normal file

Binary file not shown.

203
cover.py
View File

@ -24,8 +24,111 @@ def _clip(value, lower, upper):
return lower if value < lower else upper if value > upper else value
cover_width = 1200
cover_height = 1800
class Cover:
def __init__(self, title, subtitle, author):
self.title = title
self.subtitle = subtitle
self.author = author
self.cover_width = 1200
self.cover_height = 1800
self.cover_margin = 2
self.cover_image = Image.new("RGB", (self.cover_width, self.cover_height))
self.image_draw = ImageDraw.Draw(self.cover_image)
self._processColors()
self._drawBackground()
self._drawArtwork()
self._drawText()
def _drawBackground(self):
# Fill the background of the image with white.
self.image_draw.rectangle(
(0, 0, self.cover_width, self.cover_height), fill=self.background
)
def _drawArtwork(self):
artwork_start_x = 0
artwork_start_y = self.cover_height - self.cover_width
with urllib.request.urlopen(
f"https://api.dicebear.com/6.x/identicon/png?seed={urllib.parse.quote(self.title)}&size={self.cover_width}"
) as request:
art = Image.open(BytesIO(request.read())).resize(
(self.cover_width, self.cover_width)
)
self.cover_image.paste(art, (artwork_start_x, artwork_start_y))
# Allocate fonts for the title and the author, and draw the text.
def _drawText(self):
title_font_size = int(self.cover_width * 0.08)
subtitle_font_size = int(self.cover_width * 0.05)
author_font_size = int(self.cover_width * 0.06)
title_font = ImageFont.truetype("HackNerdFont-Regular.ttf", title_font_size)
subtitle_font = ImageFont.truetype(
"HackNerdFont-Regular.ttf", subtitle_font_size
)
author_font = ImageFont.truetype("HackNerdFont-Regular.ttf", author_font_size)
# Just a fancy way to say "near the top"
title_height = (
self.cover_height
- self.cover_width
- (self.cover_height * self.cover_margin / 100)
) * 0.6
x = self.cover_height * self.cover_margin / 100
y = self.cover_height * self.cover_margin / 100 * 2
wrapped = textwrap.wrap(self.title, 18)
self.image_draw.text(
(x, y), "\n".join(wrapped), font=title_font, fill=self.foreground
)
bbox = self.image_draw.textbbox((x, y), "\n".join(wrapped), font=title_font)
title_height = bbox[3] - bbox[1]
y = y + title_height + 0.03 * self.cover_height
if self.subtitle:
self.image_draw.text(
(x, y),
"\n".join(textwrap.wrap(self.subtitle)),
font=subtitle_font,
fill=self.foreground,
)
bbox = self.image_draw.textbbox((x, y), "\n".join(wrapped), font=title_font)
subtitle_height = bbox[3] - bbox[1]
y = y + subtitle_height + 0.03 * self.cover_height
bbox = self.image_draw.textbbox((x, y), self.author, font=author_font)
author_height = bbox[3] - bbox[1]
self.image_draw.text(
(x, self.cover_height * 0.97 - self.cover_width - author_height),
self.author,
font=author_font,
fill=self.foreground,
)
def _processColors(self):
base_saturation = 100
base_brightness = 90
color_distance = 100
counts = len(self.title) + len(self.author)
color_seed = int(_map(_clip(counts, 2, 80), 2, 80, 10, 360))
self.shape_color = ImageColor.getrgb(
f"hsv({color_seed}, {base_saturation}%, {base_brightness - (counts % 20)}%)"
)
self.base_color = ImageColor.getrgb(
f"hsv({(color_seed + color_distance) % 360}, {base_saturation}%, {base_brightness}%)"
)
self.background = ImageColor.getrgb("#fff")
self.foreground = ImageColor.getrgb("rgb(50, 50, 50)")
@click.command()
@ -36,100 +139,8 @@ cover_height = 1800
@click.option("-a", "--author", metavar="<author>", help="Book author", default=None)
@click.option("-o", "--output", metavar="<filename>", help="Output file (- for stdout)")
def cover(title, author, output, subtitle):
def processColors():
base_saturation = 100
base_brightness = 90
color_distance = 100
invert = True
counts = len(title) + len(author)
color_seed = int(_map(_clip(counts, 2, 80), 2, 80, 10, 360))
shape_color = ImageColor.getrgb(
f"hsv({color_seed}, {base_saturation}%, {base_brightness - (counts % 20)}%)"
)
base_color = ImageColor.getrgb(
f"hsv({(color_seed + color_distance) % 360}, {base_saturation}%, {base_brightness}%)"
)
if invert:
shape_color, base_color = base_color, shape_color
if (counts % 10) == 0:
shape_color, base_color = base_color, shape_color
return shape_color, base_color
# Fill the background of the image with white.
def drawBackground():
fill = ImageColor.getrgb("#fff")
image_draw.rectangle((0, 0, cover_width, cover_height), fill=fill)
# Allocate fonts for the title and the author, and draw the text.
def drawText():
fill = ImageColor.getrgb("rgb(50, 50, 50)")
title_font_size = int(cover_width * 0.08)
subtitle_font_size = int(cover_width * 0.05)
author_font_size = int(cover_width * 0.06)
title_font = ImageFont.truetype(
"/usr/share/fonts/TTF/Hack-Regular.ttf", title_font_size
)
subtitle_font = ImageFont.truetype(
"/usr/share/fonts/TTF/Hack-Regular.ttf", subtitle_font_size
)
author_font = ImageFont.truetype(
"/usr/share/fonts/TTF/Hack-Regular.ttf", author_font_size
)
title_height = (
cover_height - cover_width - (cover_height * cover_margin / 100)
) * 0.6
x = cover_height * cover_margin / 100
y = cover_height * cover_margin / 100 * 2
wrapped = textwrap.wrap(title, 18)
image_draw.text((x, y), "\n".join(wrapped), font=title_font, fill=fill)
bbox = image_draw.textbbox((x, y), "\n".join(wrapped), font=title_font)
title_height = bbox[3] - bbox[1]
y = y + title_height + 0.03 * cover_height
if subtitle:
image_draw.text(
(x, y),
"\n".join(textwrap.wrap(subtitle)),
font=subtitle_font,
fill=fill,
)
bbox = image_draw.textbbox((x, y), "\n".join(wrapped), font=title_font)
subtitle_height = bbox[3] - bbox[1]
y = y + subtitle_height + 0.03 * cover_height
x = cover_height * cover_margin / 100
image_draw.text((x, y), author, font=author_font, fill=fill)
def drawArtwork():
artwork_start_x = 0
artwork_start_y = cover_height - cover_width
with urllib.request.urlopen(
f"https://api.dicebear.com/6.x/identicon/png?seed={urllib.parse.quote(title)}&size={cover_width}"
) as request:
art = Image.open(BytesIO(request.read())).resize((cover_width, cover_width))
cover_image.paste(art, (artwork_start_x, artwork_start_y))
# Create the new cover image.
cover_margin = 2
cover_image = Image.new("RGB", (cover_width, cover_height))
image_draw = ImageDraw.Draw(cover_image)
# Draw the book cover.
shape_color, base_color = processColors()
drawBackground()
drawArtwork()
drawText()
# Return the cover Image instance.
cover_image.save(output)
cover = Cover(title, subtitle, author)
cover.cover_image.save(output)
if __name__ == "__main__":