枕头,添加和旋转图像中的文本

时间:2019-04-19 16:44:45

标签: python python-3.x python-imaging-library

我想在图像中添加诸如“ H”之类的文本。然后,旋转文本。我尝试在python中使用Pillow 6.0模块来执行此操作。 这是我的代码:

import os
from PIL import Image
from PIL import ImageFont, ImageDraw, ImageOps

img_1 = Image.new("RGB", (100, 100), (255, 255, 255))
img_2 = Image.new("L", (100, 100), 255)

font = ImageFont.load_default()
font_size = 20
font = ImageFont.truetype("arial.ttf", font_size)
draw = ImageDraw.Draw(img_2)
draw.text((50, 50), "H", fill=0, font=font)
rot_im = img_2.rotate(45, expand=False)
img_1.paste(rot_im)
img_1.save('./generated_img/im_1.png')

我期望这样:

enter image description here

但是我明白了:

enter image description here

问题:

  1. 如何使黑色部分与白色背景一样?

1 个答案:

答案 0 :(得分:3)

rotate具有一个fillcolor参数*。您可以将其设置为“白色”。

rot_im = img_2.rotate(45, expand=False, fillcolor="white")

(* in versions of PIL 5.20 and above