时间:2021-05-22
问题
如何在图片中插入大量文字并且自动换行
效果
原始图
效果图
注明
若需要写入中文请使用中文字体
实现方式
from PIL import Image, ImageDraw, ImageFontclass ImgText: font = ImageFont.truetype("micross.ttf", 24) def __init__(self, text): # 预设宽度 可以修改成你需要的图片宽度 self.width = 100 # 文本 self.text = text # 段落 , 行数, 行高 self.duanluo, self.note_height, self.line_height = self.split_text() def get_duanluo(self, text): txt = Image.new('RGBA', (100, 100), (255, 255, 255, 0)) draw = ImageDraw.Draw(txt) # 所有文字的段落 duanluo = "" # 宽度总和 sum_width = 0 # 几行 line_count = 1 # 行高 line_height = 0 for char in text: width, height = draw.textsize(char, ImgText.font) sum_width += width if sum_width > self.width: # 超过预设宽度就修改段落 以及当前行数 line_count += 1 sum_width = 0 duanluo += '\n' duanluo += char line_height = max(height, line_height) if not duanluo.endswith('\n'): duanluo += '\n' return duanluo, line_height, line_count def split_text(self): # 按规定宽度分组 max_line_height, total_lines = 0, 0 allText = [] for text in self.text.split('\n'): duanluo, line_height, line_count = self.get_duanluo(text) max_line_height = max(line_height, max_line_height) total_lines += line_count allText.append((duanluo, line_count)) line_height = max_line_height total_height = total_lines * line_height return allText, total_height, line_height def draw_text(self): """ 绘图以及文字 :return: """ note_img = Image.open("001.png").convert("RGBA") draw = ImageDraw.Draw(note_img) # 左上角开始 x, y = 0, 0 for duanluo, line_count in self.duanluo: draw.text((x, y), duanluo, fill=(255, 0, 0), font=ImgText.font) y += self.line_height * line_count note_img.save("result.png")if __name__ == '__main__': n = ImgText( "1234567890" * 5) n.draw_text()总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了python图片插入文字的具体代码,供大家参考,具体内容如下问题如何在图片中插入大量文字并且自动换行效果原始图效果图注明若需要写入中文请使用
在幻灯片中有时候根据需要要改变幻灯片的背景颜色,就需要插入图片,并且在图片上输入文字,那么如何在幻灯片中插入图片并在图片上输入文字呢?1、打开幻灯片,单击&rd
我们在使用Word过程中,通常会需要插入图片,但为了更好的说明图片,我们会选择在图片中插入文字,今天我就来和大家分享如何在word的图片中嵌入文字,来看看吧!软
在word文档中插入的图片,我们经常需要图图片做说明或者在图片中添加备注文字,那么在word文档中怎么给插入的图片添加文字?下面小编就为大家详细介绍一下,来看看
本文主要介绍的是利用Python在图片中添加文字的两种方法,下面分享处理供大家参考学习,下来要看看吧一、使用OpenCV在图片中添加文字看上去很简单,但是如果是