Mercurial > ift6266
view scripts/fonts_test.py @ 587:b1be957dd1be
Added mlj_submission to group every file needed for that.
author | fsavard |
---|---|
date | Thu, 30 Sep 2010 17:51:02 -0400 |
parents | bb26c12bb9f6 |
children |
line wrap: on
line source
#!/usr/bin/python import os import ImageFont, ImageDraw, Image dir1 = "/data/lisa/data/ift6266h10/allfonts/" #dir1 = "/Tmp/allfonts/" img = Image.new("L", (132,132)) draw = ImageDraw.Draw(img) L = [chr(ord('0')+x) for x in range(10)] + [chr(ord('A')+x) for x in range(26)] + [chr(ord('a')+x) for x in range(26)] for f in os.listdir(dir1): try: font = ImageFont.truetype(dir1+f, 25) for l in L: draw.text((60,60), l, font=font, fill="white") except: print dir1+f