fixed some issues

This commit is contained in:
queukat 2024-09-09 18:04:42 +03:00
parent 9ef928569b
commit 6540bbbb40
9 changed files with 127 additions and 77 deletions

View file

@ -179,3 +179,8 @@ def printyellow(text):
reset = "\033[0m"
logger.debug("Printing text in yellow: %s", text)
print(f"{yellow}{text}{reset}")
def stringWidth(text, font, font_size):
bbox = font.getbbox(text)
return bbox[2] - bbox[0]