Mercurial > ift6266
view scripts/fonts_test.py @ 141:3346fcd3818b
Changé un True pour False, mais je le commit car c'est ça que j'utilise pour lancer mes jobs.
author | fsavard |
---|---|
date | Mon, 22 Feb 2010 14:22:07 -0500 |
parents | 36010ff90255 |
children | bb26c12bb9f6 |
line wrap: on
line source
import random, os import ImageFont, ImageDraw, Image dir1 = "/data/lisa/data/ift6266h10/allfonts/" img = Image.new("L", (100,100)) draw = ImageDraw.Draw(img) for f in os.listdir(dir1): try: font = ImageFont.truetype(dir1+f, 25) textSize = font.getsize("kD9") except: print dir1+f