91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python實現圖片插入文字

發布時間:2020-10-14 23:38:13 來源:腳本之家 閱讀:232 作者:staHuri 欄目:開發技術

本文實例為大家分享了python圖片插入文字的具體代碼,供大家參考,具體內容如下

問題

如何在圖片中插入大量文字并且自動換行

效果

原始圖

python實現圖片插入文字

效果圖

python實現圖片插入文字

注明

若需要寫入中文請使用中文字體

實現方式

from PIL import Image, ImageDraw, ImageFont


class 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()

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

延津县| 壶关县| 郁南县| 定安县| 漠河县| 泗阳县| 鄱阳县| 潜山县| 屏边| 甘洛县| 祁东县| 常德市| 旅游| 呈贡县| 卢龙县| 江山市| 迁西县| 平舆县| 剑阁县| 香港| 塔河县| 洛扎县| 民乐县| 浦江县| 大连市| 漯河市| 霞浦县| 清丰县| 章丘市| 长子县| 武清区| 香格里拉县| 宁陵县| 长泰县| 平泉县| 碌曲县| 仲巴县| 甘南县| 新河县| 南岸区| 离岛区|