美文网首页
PIL居中对齐文本

PIL居中对齐文本

作者: 后来_16db | 来源:发表于2019-06-26 13:55 被阅读0次
from PIL import Image, ImageDraw 

W, H = (300,200) 
msg = "hello" 

im = Image.new("RGBA",(W,H),"yellow") 
draw = ImageDraw.Draw(im) 
w, h = draw.textsize(msg) 
draw.text(((W-w)/2,(H-h)/2), msg, fill="black") 

im.save("hello.png", "PNG") 

相关文章

网友评论

      本文标题:PIL居中对齐文本

      本文链接:https://www.haomeiwen.com/subject/uflccctx.html