This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from PIL import Image, ImageDraw, ImageFont | |
# make sure you have the fonts locally in a fonts/ directory | |
georgia_bold = 'fonts/georgia_bold.ttf' | |
georgia_bold_italic = 'fonts/georgia_bold_italic.ttf' | |
# W, H = (1280, 720) # image size | |
W, H = (720, 405) # image size | |
txt = 'Hello Petar this is my test image' # text to render |