Mercurial > ift6266
view scripts/fonts_test.py @ 140:29fd19d67026
Ajoutés fichiers oubliés pour previous commit.
author | fsavard |
---|---|
date | Mon, 22 Feb 2010 13:39:35 -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