Font size should be 100 not 0

pull/2041/head
cyteon 1 year ago
parent a436c241d7
commit a256cb5d74

@ -85,9 +85,9 @@ def comment_image_maker(theme, reddit_obj: dict, comments, txtclr, padding=5, tr
id = re.sub(r"[^\w\s-]", "", reddit_obj["thread_id"]) id = re.sub(r"[^\w\s-]", "", reddit_obj["thread_id"])
if transparent: if transparent:
font = ImageFont.truetype(os.path.join("fonts", "Roboto-Bold.ttf"), 0) font = ImageFont.truetype(os.path.join("fonts", "Roboto-Bold.ttf"), 100)
else: else:
font = ImageFont.truetype(os.path.join("fonts", "Roboto-Regular.ttf"), 0) font = ImageFont.truetype(os.path.join("fonts", "Roboto-Regular.ttf"), 100)
size = (1920, 1080) size = (1920, 1080)
print_step("Rendering Images") print_step("Rendering Images")

Loading…
Cancel
Save