python3 文本变图片

发布时间:2019-09-27 07:09:28编辑:auto阅读(1987)

    python3下的PIL叫做 pillow


    python -m pip  install pillow


    创建目录 fonts,把微软雅黑字体放到下面。msyh.ttf

    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    import os
    from  PIL  import   Image,ImageFont,ImageDraw
    l = [1,23,4]
    text = u"这是一段测试文本,test 123。{}\n ".format(l[1])
    im = Image.new("RGB", (300, 50), (255, 255, 255))
    dr = ImageDraw.Draw(im)
    font = ImageFont.truetype(os.path.join("fonts", "msyh.ttf"), 14)
    dr.text((10, 5), text, font=font, fill="#000000")
    im.show()
    im.save("t.png")


关键字

上一篇: python3之list列表

下一篇: Python3 运算符