gpt4 book ai didi

python - 如何将非抗锯齿字体渲染为内部图像?

转载 作者:太空宇宙 更新时间:2023-11-04 07:24:52 27 4
gpt4 key购买 nike

使用 Python 将非抗锯齿字体(例如 ttf 字体)渲染到内部图像(例如 PIL.Image,即我不需要显示它)?我说准确是因为我前一阵子用 pygame 试过它,我给它的渲染字体大小与 Word 或 Paint 中渲染的窗口不匹配。

最佳答案

Python 图像库 (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

Python Imaging Library - Text rendering

关于python - 如何将非抗锯齿字体渲染为内部图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5747739/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com