标签: 水印
 
                 
                Python PIL 为图片添加 PNG 透明水印
                  hliang  
                  Posted on  
            
            效果参见:http://blog.ixcv.com/post/360.html 部分代码: def waterMark(im, wm): if im.mode != ‘RGBA’: im.convert(‘RGBA’) layer = Image.new(‘RGBA’, im.size, (0,0,…
Read More