gpt4 book ai didi

python - 在 Python 的 PIL 中渲染波斯语(波斯语)单词

转载 作者:行者123 更新时间:2023-12-03 21:40:16 25 4
gpt4 key购买 nike

我正在尝试根据波斯语(波斯语)文本制作图像。
我正在为 Python3 使用 PIL。这是我的代码:

from PIL import Image, ImageFont, ImageDraw
text = "خطاب"
image = Image.new("RGBA", (100,100), (255,255,255))
font = ImageFont.truetype("FreeFarsiMono.ttf", 60, encoding='unic')
draw = ImageDraw.Draw(image)
draw.text((0,0), text, (0,0,0), font=font)
image.save("Test.png")
image.show()

但是,当我运行代码时,我得到了一些带有问号的矩形框,而不是文本图像!
我将不胜感激。

最佳答案

首先,您必须设置源代码:

# -*- coding: utf-8 -*-

然后你必须解码你的文本:
text = text.decode('utf-8')

你的最终代码应该是这样的:
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from PIL import Image, ImageFont, ImageDraw

text = "ﻡﻼﺳ"
text = text.decode('utf-8')
image = Image.new("RGBA", (100,100), (255,255,255))
font = ImageFont.truetype("yekan.ttf", 45, encoding='unic')
draw = ImageDraw.Draw(image)
draw.text((0,0), text, (0,0,0), font=font)
image.save("Test.png")
image.show()

注意如果你把你的字母分开,你会转换它们;例如您可以使用 awebfont来解决这个问题。

输出:

Test.png

关于python - 在 Python 的 PIL 中渲染波斯语(波斯语)单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19861260/

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