Creando una marca de agua

Este script en Python colocará en una imagen una marca de agua. Podemos establecer el Texto, la ubicación y la Fuente.

from PIL import Image
from PIL import ImageFont
from PIL import ImageDraw
def watermark_img(img_path,res_path, text, pos):
    img = Image.open(img_path)
    wm = ImageDraw.Draw(img)
    col= (9, 3, 10)
    wm.text(pos, text, fill=col)
    img.show()
    img.save(res_path)
img = 'initial.jpg'
watermark_img(img, 'result.jpg','Esto es un texto', pos=(1, 0))

Deja un comentario