如何在PIL中的透明图像上绘制unicode字符

时间:2012-06-21 06:45:42

标签: python python-imaging-library imaging

我正在尝试使用python绘制某些unicode字符和图像(准确地说是PIL)。

使用以下代码,我可以生成白色背景的图像:

('entity_code'传入方法)

    size = self.font.getsize(entity_code)
    im = Image.new("RGBA", size, (255,255,255))
    draw = ImageDraw.Draw(im)
    draw.text((0,6), entity_code, font=self.font, fill=(0,0,0))
    del draw
    img_buffer = StringIO()
    im.save(img_buffer, format="PNG")

我尝试了以下内容:

('entity_code'传入方法)

    img = Image.new('RGBA',(100, 100))
    draw = ImageDraw.Draw(img)
    draw.text((0,6), entity_code, fill=(0,0,0), font=self.font)
    img_buffer = StringIO()
    img.save(img_buffer, 'GIF', transparency=0)

然而,这无法绘制unicode字符。看起来我最终得到一个空的透明图像:(

我在这里缺少什么?有没有更好的方法在python中的透明图像上绘制文本?

3 个答案:

答案 0 :(得分:2)

您的代码示例已经到处都是,我倾向于同意@fraxel您对RGBA图像的填充颜色和背景颜色的使用不够具体。但是我实际上无法让你的代码示例工作,因为我真的不知道你的代码如何组合在一起。

另外,就像@monkut提到的那样,你需要查看你正在使用的字体,因为你的字体可能不支持特定的unicode字符。但是,不支持的字符应该绘制为空方块(或者默认值),这样您至少可以看到某种输出。

我在下面创建了一个简单的示例,用于绘制unicode字符并将其保存到.png文件中。

import Image,ImageDraw,ImageFont

# sample text and font
unicode_text = u"Unicode Characters: \u00C6 \u00E6 \u00B2 \u00C4 \u00D1 \u220F"
verdana_font = ImageFont.truetype("verdana.ttf", 20, encoding="unic")

# get the line size
text_width, text_height = verdana_font.getsize(unicode_text)

# create a blank canvas with extra space between lines
canvas = Image.new('RGB', (text_width + 10, text_height + 10), (255, 255, 255))

# draw the text onto the text canvas, and use black as the text color
draw = ImageDraw.Draw(canvas)
draw.text((5,5), unicode_text, font = verdana_font, fill = "#000000")

# save the blank canvas to a file
canvas.save("unicode-text.png", "PNG")

上面的代码创建了下面显示的png: unicode text

作为旁注,我在Windows上使用Pil 1.1.7和Python 2.7.3。

答案 1 :(得分:0)

我认为您必须确保加载的字体支持您尝试输出的字符。

这里有一个例子: http://blog.wensheng.com/2006/03/how-to-create-images-from-chinese-text.html

font = ImageFont.truetype('simsun.ttc',24)

答案 2 :(得分:0)

在您的示例中,您创建了一个RGBA图片,但未指定alpha频道的值(因此默认为255)。如果您将(255, 255, 255)替换为(255,255,255,0),它应该可以正常工作(因为0 alpha的像素是透明的)。

举例说明:

import Image
im = Image.new("RGBA", (200,200), (255,255,255))
print im.getpixel((0,0))
im2 = Image.new("RGBA", (200,200), (255,255,255,0))
print im2.getpixel((0,0))
#Output:
(255, 255, 255, 255)
(255, 255, 255, 0)