|
|
|
@ -2,11 +2,12 @@ from PIL.ImageFont import ImageFont, FreeTypeFont
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def getsize(font: ImageFont | FreeTypeFont, text: str):
|
|
|
|
|
left, top, right, bottom = font.getbbox(text)
|
|
|
|
|
width = right - left
|
|
|
|
|
height = bottom - top
|
|
|
|
|
return width, height
|
|
|
|
|
left, top, right, bottom = font.getbbox(text)
|
|
|
|
|
width = right - left
|
|
|
|
|
height = bottom - top
|
|
|
|
|
return width, height
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def getheight(font: ImageFont | FreeTypeFont, text: str):
|
|
|
|
|
_, height = getsize(font, text)
|
|
|
|
|
return height
|
|
|
|
|
_, height = getsize(font, text)
|
|
|
|
|
return height
|
|
|
|
|