ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: instigator on November 22, 2010, 09:59:10 AM

Title: create a single html file from multiples images
Post by: instigator on November 22, 2010, 09:59:10 AM
How could be the code for this?
I want create a single HTML file with the information of multiples images, not one HTML per image.
Title: Re: create a single html file from multiples images
Post by: Phil Harvey on November 22, 2010, 10:17:57 AM
Try this:

exiftool -h -g1 FILES > out.html

Where FILES is one or more file and/or directory names.

This will write HTML-formatted tables with the information.  I added the -g1 option because personally I like to have these group headings.

Notes that the output html file will not contain a proper html header, etc.  You must generate these yourself if they are needed.

- Phil