gpt4 book ai didi

python - wand - 文本换行 - 基于图像文件大小

转载 作者:行者123 更新时间:2023-11-28 17:30:47 25 4
gpt4 key购买 nike

您好,我正在尝试在图像上写文字。但是文字溢出来了。有什么方法可以将此类文本内容包裹起来以适合图像?

from wand.image import Image
from wand.drawing import Drawing
from wand.color import Color

with Image(filename='/home/path/image.jpg').clone() as img:
print('width =', img.width)
print('height =', img.height)
quote = input('quote:')
with Drawing() as draw:
draw.font = 'wandtests/assets/League_Gothic.otf'
draw.fill_color=Color('red')
draw.text_alignment= 'center'
img.font_size=50
draw.text(int(img.width/2),int(img.height/2), quote)
print(draw.get_font_metrics(img,quote))
draw(img)
print('text drawn')
img.save(filename='/home/path/image01.jpg')

给定的输入是:

"Success makes so many people hate you. I wish it wasn't that way. It would be wonderful to enjoy success without seeing envy in the eyes of those around you."

output image

最佳答案

不绘制文本,而是使用 caption Image 继承自 BaseImage 的方法。

关于python - wand - 文本换行 - 基于图像文件大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34517724/

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