As tu Photoshop ???
Si oui, j'ai bricolé un script pour toi. (Le code original se trouvant
ici)
Tu copie-colle le code suivant dans un fichier texte que tu appelle CommeTuVeux.jsx
Ensuite, tu ouvres ce script avec photoshop.
Tu peux évidement te créer une action qui ouvre ce script, qui aplatie l'image par exemple... ou alors, tu peux l'ouvrir automatiquement des que tu ouvres une image... a toi de voir ce que tu en fais.
//========STARTS HERE=======
//
// EXIF Info extraction (c) 2004 M.SKAD
// 2011/01/03 Enggmaug - Adaptation pour afficher uniquement la date dans le coin inferieur droit
//========================
var savedUnits=app.preferences.rulerUnits;
var thisDoc=app.activeDocument;
app.preferences.rulerUnits=Units.PIXELS;
//==============================
// Include EXIF info
//==============================
var exif_info="";
for (var e = 0; e < thisDoc.info.exif.length; e++){
try {
if (thisDoc.info.exif[e][0] == "Date Time")
var InfoDate= thisDoc.info.exif[e][1].split(" ");
exif_info = InfoDate[0] + "\r";
}
catch (e) {}
}
// alert(thisDoc.info.exif);
text_layer=thisDoc.artLayers.add();
text_layer.kind = LayerKind.TEXT;
textColor = new SolidColor;
textColor.rgb.red = 63;
textColor.rgb.green = 255;
textColor.rgb.blue = 0;
text_layer.textItem.color = textColor;
text_layer.textItem.kind=TextType.PARAGRAPHTEXT;
text_layer.textItem.position = Array(thisDoc.width - thisDoc.width * 0.15, thisDoc.height - thisDoc.height * 0.05);
text_layer.textItem.size = 24;
text_layer.textItem.font = "ArialMT";
text_layer.textItem.width = thisDoc.width * 0.8
text_layer.textItem.height = thisDoc.height * 0.8
text_layer.textItem.contents=exif_info;
//==============================
// restore preferences
app.preferences.rulerUnits=savedUnits;
//========ENDS HERE===============
La taille, la police l'emplacement peuvent être changés.