本篇文章扣丁學堂Python培訓小編和喜歡Python開發技術的小夥伴們分享一下Python開發技術:Python如何在圖片中插入大量文字且自動換行,小編以爲有很好的參考價值,如今分享給小夥伴們,但願對小夥伴有所幫助。app
Python培訓
問題:學習
如何在圖片中插入大量文字而且自動換行code
實現方式:視頻
from PIL import Image, ImageDraw, ImageFont教程
class ImgText:圖片
font = ImageFont.truetype("micross.ttf", 24)開發
def __init__(self, text):get
# 預設寬度 能夠修改爲你須要的圖片寬度 self.width = 100 # 文本 self.text = text # 段落 , 行數, 行高 self.duanluo, self.note_height, self.line_height = self.split_text()
def get_duanluo(self, text):it
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):class
# 按規定寬度分組 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()
以上就是扣丁學堂Python在線學習小編給你們分享的Python如何在圖片中插入大量文字且自動換行,但願對小夥伴們有所幫助,想要了解更多內容的小夥伴能夠登陸扣丁學堂官網諮詢。
想要學好Python開發小編給你們推薦口碑良好的扣丁學堂,扣丁學堂有專業老師制定的Python學習路線圖輔助學員學習,此外還有與時俱進的Python視頻教程供你們學習,想要學好Python開發技術的小夥伴快快行動吧。