使用PIL和truetype字体在文本中抖动

时间:2010-01-12 08:08:24

标签: python text python-imaging-library dithering

考虑以下代码:     来自PIL import Image,ImageDraw,ImageFont

def addText(img, lTxt):
    FONT_SIZE = 10
    INTERLINE_DISTANCE = FONT_SIZE + 1
    font = ImageFont.truetype('arial.ttf', FONT_SIZE)
    lTxtImageHeight = INTERLINE_DISTANCE * len(lTxt)
    # create text image 
    lTxtImg = Image.new('RGBA', (img.size[1], lTxtImageHeight), 255)
    lTxtImgDraw = ImageDraw.Draw(lTxtImg, )
    for (i, line) in enumerate(lTxt):
      lTxtImgDraw.text((5, i * INTERLINE_DISTANCE), line, font=font, fill='#000000')
    # rotate text image
    lTxtImg = lTxtImg.rotate(90)
    # create new transparent image ret
    ret = Image.new('RGBA', (img.size[0] + lTxtImageHeight, img.size[1]), 255)
    # paste the image to ret
    ret.paste(img, (0,0))
    # paste the text to ret
    ret.paste(lTxtImg, (img.size[0], 0), lTxtImg)
    return ret

img = Image.open('in.png')
addText(img, ['lorem', 'ipsum', 'dolores']).save('out.png')

Here are the input and the output files 这是输入

input http://img16.imageshack.us/img16/8229/73936270.png

这是输出

output http://img94.imageshack.us/img94/531/outj.png

正如您所看到的,输出图像在文本周围包含许多微红噪声。我怎样才能消除这种抖动?

1 个答案:

答案 0 :(得分:0)

我建议将中间文本图像写入文件(文本,然后是旋转的文本),以隔离文物首次出现的位置。

另一种可能性是png编码使用的是没有灰度值的托盘,因此这些红色是最接近的。我检查了imageshack上的文件编码,看起来没问题,所以我认为这不是问题。