python图片添加水印
from PIL import Image,ImageDraw, ImageFont
def add_num(img):
draw = ImageDraw.Draw(img)
myfont = ImageFont.truetype('C:/windows/fonts/Arial.ttf', size=40)
fillcolor = "#ff0000"
width,height = img.size
draw.text((width-500,5),'www.51lovelife.com', font=myfont, fill=fillcolor)
img.save('result.jpg','jpeg')
return 0
if __name__ == '__main__':
image = Image.open('D:/1513074500357.jpg')
add_num(image)
image.show()
自己打印 https://github.com/Yixiaohan/show-me-the-code