2019-02-28 15:17:43 +01:00
|
|
|
from DesignEntity import DesignEntity
|
|
|
|
from PIL import ImageFont, ImageDraw, ImageOps
|
2019-03-03 10:23:03 +01:00
|
|
|
from Assets import path, defaultfont
|
2019-02-28 15:17:43 +01:00
|
|
|
|
2019-02-28 20:31:51 +01:00
|
|
|
paddingcorrection = -5
|
|
|
|
|
2019-02-28 15:17:43 +01:00
|
|
|
class TextDesign (DesignEntity):
|
|
|
|
"""Object that manages all information relevant to text
|
|
|
|
and prints it to an image"""
|
2019-03-03 16:45:06 +01:00
|
|
|
def __init__ (self, size, font = None, fontsize = 12, text = "", horizontalalignment = "left", verticalalignment = "top", mask=True, truncate=True, truncate_suffix = '...'):
|
2019-03-03 13:52:36 +01:00
|
|
|
super(TextDesign, self).__init__(size, mask = mask)
|
2019-03-03 10:23:03 +01:00
|
|
|
if font is None:
|
|
|
|
font = defaultfont
|
2019-02-28 15:17:43 +01:00
|
|
|
self.font_family = font
|
|
|
|
self.font_size = fontsize
|
|
|
|
self.text = text
|
|
|
|
self.horizontal_alignment = horizontalalignment
|
|
|
|
self.vertical_alignment = verticalalignment
|
2019-03-03 16:45:06 +01:00
|
|
|
self.truncate = truncate
|
|
|
|
self.truncate_suffix = truncate_suffix
|
2019-02-28 15:17:43 +01:00
|
|
|
|
|
|
|
def __finish_image__ (self):
|
2019-03-03 10:12:04 +01:00
|
|
|
self.__font__ = self.__get_font__()
|
2019-03-03 16:45:06 +01:00
|
|
|
if self.truncate:
|
|
|
|
self.__truncate_text__()
|
2019-02-28 15:17:43 +01:00
|
|
|
pos = self.__pos_from_alignment__()
|
|
|
|
ImageDraw.Draw(self.__image__).text(pos, self.text, fill=0, font=self.__font__)
|
2019-03-03 16:45:06 +01:00
|
|
|
|
|
|
|
def __truncate_text__ (self):
|
|
|
|
if self.__font__.getsize(self.text)[0] < self.size[0]: #does not need truncating
|
|
|
|
return
|
|
|
|
suffix_length = self.__font__.getsize(self.truncate_suffix)[0]
|
|
|
|
while self.__font__.getsize(self.text)[0] + suffix_length >= self.size[0]:
|
|
|
|
self.text = self.text[0:-1]
|
|
|
|
self.text += self.truncate_suffix
|
2019-02-28 15:17:43 +01:00
|
|
|
|
|
|
|
def __pos_from_alignment__ (self):
|
|
|
|
width, height = self.__font__.getsize(self.text)
|
|
|
|
x, y = 0, 0
|
|
|
|
|
|
|
|
if self.vertical_alignment == "center":
|
|
|
|
y = int((self.size[1] / 2) - (height / 2))
|
|
|
|
elif self.vertical_alignment == "bottom":
|
|
|
|
y = int(self.size[1] - height)
|
|
|
|
|
|
|
|
if self.horizontal_alignment == "center":
|
|
|
|
x = int((self.size[0] / 2) - (width / 2))
|
|
|
|
elif self.vertical_alignment == "right":
|
|
|
|
x = int(self.size[0] - width)
|
|
|
|
|
2019-03-03 10:12:04 +01:00
|
|
|
return (x, y + paddingcorrection)
|
|
|
|
|
|
|
|
def __get_font__(self):
|
|
|
|
return ImageFont.truetype(path + self.font_family, self.font_size)
|