¿Hacer marcas de agua usando geoetiquetas y crear archivos de forma a partir de coordenadas?

Respuestas:

15

puedes usar python para obtener información EXIF:

from PIL import Image
from PIL.ExifTags import TAGS
from pprint import pprint

def getexif(im):
    res = {}
    try:
       img = Image.open(im)
       info = img._getexif()
       for tag, val in info.items():
           dec = TAGS.get(tag, tag)
           res[dec] = val

    except IOError:
       print im
    return res
    pprint res 

luego use el módulo Python ImageDraw para dibujar texto o cualquier cosa.

import ImageFont, ImageDraw

def drawtext(im):
   op = ImageDraw.Draw(im)
   fnt = ImageFont.truetype("tahoma.ttf", 12)
   op.text((5, 5), "YourText", font=fnt)
Aragón
fuente