使用Python将非抗锯齿字体(例如ttf字体)渲染到内部图像(例如,PIL.Image
,即我不需要显示它)的最快速方式和准确度是什么? ?我说准确,因为我用pygame尝试了一段时间后,我给它的大小的渲染字体与Word或Paint中渲染的窗口不匹配。
答案 0 :(得分:7)
Python Imaging Library(PIL)可以将文本呈现给图像 - 我不知道它是不准确,但我还没有完全测试它...
预先存在的问题的示例:
from PIL import Image
from PIL import ImageFont, ImageDraw
image = Image.new("RGBA", (288,432), (255,255,255))
usr_font = ImageFont.truetype("resources/HelveticaNeueLight.ttf", 25)
d_usr = ImageDraw.Draw(image)
d_usr.fontmode = "1" # this apparently sets (anti)aliasing. See link below.
d_usr.text((105,280), "MYTEXT",(0,0,0), font=usr_font)
另见:
http://www.pythonware.com/products/pil/
http://mail.python.org/pipermail/image-sig/2005-August/003497.html
答案 1 :(得分:1)
啊this is how it's done ...应该像windows一样使用它的算法。