python PIL 操作图片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python PIL 操作图片相关的知识,希望对你有一定的参考价值。

第 0000 题:将你的 QQ 头像(或者微博头像)右上角加上红色的数字,类似于微信未读信息数量那种提示效果。 类似于图中效果

技术分享

https://github.com/Yixiaohan/show-me-the-code


首先要安装PIL 库,参考http://liam0205.me/2015/04/22/pil-tutorial-basic-usage/

sudo pip install Pillow


然后python 如下

from PIL import Image, ImageDraw
import sys

def DrawNotify(pic,text):
    image = Image.open(pic)
    imgdraw = ImageDraw.Draw(image)
    #should be size ,not size()
    width,height = image.size 
    #notice that --> w
    #           |
    #           V
    #           h
    #should []
    imgdraw.text([0.9*width,0.1*height],text,255) 
    del imgdraw
    #image.show()
    image.save(pic)
    
if __name__ == ‘__main__‘:
    #accept first and second arguments 
    DrawNotify(sys.argv[1],sys.argv[2])



本文出自 “ryanscn” 博客,请务必保留此出处http://ryanscn.blog.51cto.com/2725212/1751550

以上是关于python PIL 操作图片的主要内容,如果未能解决你的问题,请参考以下文章

python PIL相关操作

python PIL 操作图片

python----图像简单处理(PIL or Pillow)

python通过pil模块对图片格式进行转换的代码

Python工具类之PIL.Image库快速实现多图拼接

纯代码系列:Python实现验证码图片(PIL库经典用法用法,爬虫12306思路)