You need to install the following:

sudo apt-get install libimage-exiftool-perl

Create a bashscript:

#!/bin/bash
IMAGEDESCRIPTION=""
IMAGEDESCRIPTION=`zenity --width=500 --height=50 --title "Image Description" --text "Input text" --entry `

if [ -z $IMAGEDESCRIPTION ]; then 
        exit 0
   else
        FILES=`zenity --file-selection --multiple --separator=" "`
fi

exiftool -imagedescription=$IMAGEDESCRIPTION $FILES

This script will ask for a text string which then will be added to the selected files under the tag “Image Description”.

 
indexes/imagedescription.txt · Last modified: 2009/03/18 20:48 by domingo
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki