From: Dan F. <dfa...@us...> - 2008-11-19 05:37:01
|
Update of /cvsroot/libexif/exif In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25475 Modified Files: ChangeLog exif.1 Log Message: exif.1: Added some examples of how to use the command-line Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/exif/ChangeLog,v retrieving revision 1.78 retrieving revision 1.79 diff -u -p -d -r1.78 -r1.79 --- ChangeLog 18 Nov 2008 20:33:38 -0000 1.78 +++ ChangeLog 19 Nov 2008 05:36:53 -0000 1.79 @@ -4,6 +4,7 @@ * po/nl.po: Updated Dutch translation by Erwin Poeze * po/pl.po: Updated Polish translation by Jakub Bogusz * po/sv.po: Updated Swedish translation by Daniel Nylander + * exif.1: Added some examples of how to use the command-line 2008-11-11 Dan Fandrich <da...@co...> Index: exif.1 =================================================================== RCS file: /cvsroot/libexif/exif/exif.1,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -d -r1.11 -r1.12 --- exif.1 5 Nov 2008 07:12:07 -0000 1.11 +++ exif.1 19 Nov 2008 05:36:53 -0000 1.12 @@ -123,6 +123,46 @@ Show help message. .TP .BI "\-\-usage" Display brief usage message. +.SH "EXAMPLES" +Display all recognized EXIF tags in an image and the tag contents: +.LP +.RS +exif image.jpg +.RE +.LP +Display a table listing all known EXIF tags and whether each one exists in the +given image: +.LP +.RS +exif --list-tags image.jpg +.RE +.LP +Extract the thumbnail into the file thumbnail.jpg: +.LP +.RS +exif --extract-thumbnail --output=thumbnail.jpg image.jpg +.RE +.LP +Display a list of the numeric values of all recognized EXIF tags and the +tag contents: +.LP +.RS +exif --ids image.jpg +.RE +.LP +Display the meaning of tag 0x9209 in the "EXIF" IFD according to the EXIF +specification: +.LP +.RS +exif --show-description --ifd=EXIF --tag=0x9209 +.RE +.LP +Add an Orientation tag with value "bottom - left" to an existing image: +.LP +.RS +exif --output=new.jpg --ifd=0 --tag=0x0112 --set-value=4 image.jpg +.RE +.LP .SH "AUTHOR" Written by Lutz Mueller <lu...@us...>. .SH "SEE ALSO" |