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

python生成透时图片and 写文字

时间:2016-12-24 19:28:44      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:log   python   imp   div   else   from   文字   pre   http   

import Image  
from get_png import getpng  
  
def transparent(infile):  
    #open png,covert it into ‘RGBA mode‘,resize it,get data then make a datalist  
    datalist=list(Image.open(infile,r).convert(RGBA).resize((1000,1000),Image.BILINEAR).getdata())  
    #color(0,0,0,0) is transparent  
    newim=Image.new("RGBA",(1000,1000),(0,0,0,0))  
    for x in range(1000):  
        for y in range(1000):  
            #color(255,255,255,255) is ‘white‘  
            if datalist[1000*y+x]==(255,255,255,255):  
                newim.putpixel((x,y),(255,255,255,255))  
            else:  
                pass  
    newim.save("1000_1000.png")  
    return "1000_1000.png"

以上生成了透明文件

import Image
import ImageDraw
import ImageFont

#增加水印.直接写入文件.
def watermask(qq_screencapture_file):
    print(qq_screencapture_file)
    #写入两行文件.
    sign_text1 = u版权声明:本文为博主原创,未经允许不得转载。
    sign_text2 = u博主地址:http://www.www.www
    #字体必须大于等于19才可以输出汉字,过小可能该库渲染不起来,具体原因不清楚。
    font = ImageFont.truetype(simhei.ttf,19)
    img = Image.open(qq_screencapture_file)
    #获得图片长和宽,将文字写到最底下.
    width,height = img.size
    #img = Image.new("RGBA",(300,200),(0,0,0))
    draw = ImageDraw.Draw(img)
    #draw.text( (0,50), u‘你好,世界!‘, font=font)
    # draw.text( (0,50), unicode(txt,‘UTF-8‘))
    draw.text((20,height-50),sign_text1,fill=#ff0000, font=font)
    draw.text((20,height-30),sign_text2,fill=#ff0000, font=font)
    del draw
    #正好qq图片是png的.
    img.save(qq_screencapture_file, "PNG")
    print("finish.")

以上写入了文字

python生成透时图片and 写文字

标签:log   python   imp   div   else   from   文字   pre   http   

原文地址:http://www.cnblogs.com/chjbbs/p/6217959.html

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