使用枕头时出现图像粘贴问题-python

时间:2020-11-03 15:13:48

标签: python python-imaging-library

当我尝试使用此代码时,输​​出将显示全黑图像:

img = Image.open("image.png")
font = ImageFont.truetype("ArialCE.ttf", size)
text = Image.new(mode = "RGBA", size= (400,375))

draw = ImageDraw.Draw(new_image)
text = input_text
draw.text((x,y), text, (0,0,0), font = font)
text.save("saved.png")
img.paste(text, (0,0))
img.save("text.png")

我正在使用枕头库,我希望将“文本”图像粘贴到img上。

谢谢

1 个答案:

答案 0 :(得分:0)

如果要创建透明图像,请像这样使用Image.new()

im = Image.new('RGBA', (640,480), color=(0,0,0,0))