1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Correct how to get the font files

This commit is contained in:
phxntxm 2017-05-02 19:19:28 -05:00
parent 38cc78c09e
commit 84746e23bb

View file

@ -5,8 +5,8 @@ from PIL import Image, ImageDraw, ImageFont, ImageOps
from . import utilities
base_path = "images/banner/base"
whitneyMedium = "../fonts/whitney-medium.ttf"
whitneyBold = "../fonts/whitney-bold.ttf"
whitneyMedium = "fonts/whitney-medium.ttf"
whitneyBold = "fonts/whitney-bold.ttf"
header_height = 125
canvas_height = 145
banner_background = "{}/bannerTop2.png".format(base_path)