view scripts/fonts_test.py @ 136:4a78c9b83fee

Added script to launch the ~108 data generation jobs with dbidispatch
author boulanni <nicolas_boulanger@hotmail.com>
date Sat, 20 Feb 2010 02:11:56 -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