Image.Draw模块报错

问题: 在执行ImageDraw()的multiline_text()时出现报错

draw = ImageDraw.Draw(target)
draw.multiline_text(self.text_loc[col], multi_text, fill=(font_color, font_color, font_color),  font=self.font, spacing=4, align='left')

SystemError: <built-in method render of Font object at 0x0000019EFDF54DC8> returned NULL without seting an error
Image.Draw模块报错
改正:
text_loc文本中的最后为’\n’,把 ‘\n’ 去掉就好了

上一篇:Unity 渲染流水线 :CPU与GPU合作创造的艺术wfd


下一篇:Codevs 2611 观光旅游(floyed最小环)