gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 00:00:53 27 4
gpt4 key购买 nike

我想在图像中添加文本,例如“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. 如何让黑色部分和白色背景一样?

最佳答案

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

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

(* in versions of PIL 5.20 and above )

关于python - 枕头,添加和旋转图像中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55765065/

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