码迷,mamicode.com
首页 > 编程语言 > 详细

给图片右上角加上红色的数字(python)

时间:2014-12-26 16:44:39      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:python

给图片右上角加上红色的数字(python)

by 伍雪颖

技术分享

from PIL import Image,ImageDraw,ImageFont

def addNum(filePath):
    img = Image.open(filePath)
    size = img.size
    fontSize = size[
1] / 4
    draw = ImageDraw.Draw(img)
   
    ttFont = ImageFont.truetype(
"/Library/Fonts/arial.ttf", fontSize)
    draw.text((size[
0]-fontSize, 0), "3",(256,0,0), font=ttFont)
   
del draw
    img.save(
‘./result.jpg‘)
    img.show()

print addNum("image.jpg")

给图片右上角加上红色的数字(python)

标签:python

原文地址:http://blog.csdn.net/rainlesvio/article/details/42172459

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!