Mercurial > ift6266
diff scripts/fonts_test.py @ 159:e81241cfc2de
merge
author | Myriam Cote <cotemyri@iro.umontreal.ca> |
---|---|
date | Thu, 25 Feb 2010 09:05:48 -0500 |
parents | bb26c12bb9f6 |
children |
line wrap: on
line diff
--- a/scripts/fonts_test.py Thu Feb 25 09:04:40 2010 -0500 +++ b/scripts/fonts_test.py Thu Feb 25 09:05:48 2010 -0500 @@ -1,15 +1,19 @@ +#!/usr/bin/python -import random, os +import os import ImageFont, ImageDraw, Image dir1 = "/data/lisa/data/ift6266h10/allfonts/" +#dir1 = "/Tmp/allfonts/" -img = Image.new("L", (100,100)) +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) - textSize = font.getsize("kD9") + for l in L: + draw.text((60,60), l, font=font, fill="white") except: print dir1+f