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 += '
' duanluo += char line_height = max(height, line_height) if not duanluo.endswith('
'): duanluo += '
' return duanluo, line_height, line_count def split_text(self): # max_line_height, total_lines = 0, 0 allText = [] for text in self.text.split('
'): 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()
총결산
이상 은 이 글 의 모든 내용 입 니 다.본 고의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가 치 를 가지 기 를 바 랍 니 다.여러분 의 저희 에 대한 지지 에 감 사 드 립 니 다.더 많은 내용 을 알 고 싶다 면 아래 링크 를 보 세 요.

좋은 웹페이지 즐겨찾기