zoukankan      html  css  js  c++  java
  • python3里面的图片处理库 pillow

    在python2下用pil,而在python3下可以安装pillow
    功能,在图片上加上几个字

    #coding: utf-8
    myPath = "./"
    fontPath = "./"
    inputFile = "img.jpg"
    outputFile = "output.jpg"
    
    #图片的基本参数获取
    try:
        from PIL import Image, ImageDraw, ImageFont, ImageEnhance
    except ImportError:
        import Image, ImageDraw, ImageFont, ImageEnhance
    
    
    img = Image.open('img.jpg')
    draw = ImageDraw.Draw(img)
    fontsize = min(img.size)/4
    print(fontsize)
    #用黑体可以写中文,如果是英文字体发现不能显示中文
    myfont = ImageFont.truetype('C:/windows/fonts/simhei.ttf', size = int(fontsize))
    fillcolor = "#ff0000"
    width, height = img.size
    draw.text((0,img.size[0]-int(fontsize)),"你好a", font=myfont, fill=fillcolor)
    img.save(outputFile,'jpeg')
    
    
    
  • 相关阅读:
    Linux文件及目录查找
    英语单词independent
    英语单词omitting
    英语单词deploy
    英语单词debug
    线程
    进程
    操作系统历史
    分布式爬虫
    爬虫基础
  • 原文地址:https://www.cnblogs.com/Mysterious/p/7478232.html
Copyright © 2011-2022 走看看