view scripts/fonts_test.py @ 138:128507ac4edf

Initial commit for the stacked convolutional denoising autoencoders
author Owner <salahmeister@gmail.com>
date Sun, 21 Feb 2010 17:30:38 -0600
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