EXIF data report

Discuss and share scripts and script files...
Post Reply
GUIguy
Posts: 95
Joined: 03 Jan 2016 02:11
Location: Oregon, USA Win 10-64
Contact:

EXIF data report

Post by GUIguy »

Is there a way, script or otherwise, to show/report ALL the EXIF data for a group of photos?

I need this for legal purposes even though I'm just a private individual.

Thanks...
GUIguy
I measure a good day by how little I fell behind

Quick, hire a teenager while they still know everything!

highend
Posts: 13333
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: EXIF data report

Post by highend »

Run exiftool over the selected items?
One of my scripts helped you out? Please donate via Paypal

GUIguy
Posts: 95
Joined: 03 Jan 2016 02:11
Location: Oregon, USA Win 10-64
Contact:

Re: EXIF data report

Post by GUIguy »

Thanks, highend...
I tried EXIFTOOL but I could not see a way to do multiple items at once.

And I have to admit that I'm a GUI person (note my username!) and don't do well with command lines. I tried the EXIFTOOL GUI that someone wrote, but can't get it to work.

At any rate, I have a whole bunch (50+) photos where I want to create a report of EXIF data as opposed to doing it one by one.
GUIguy
I measure a good day by how little I fell behind

Quick, hire a teenager while they still know everything!

highend
Posts: 13333
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: EXIF data report

Post by highend »

Code: Select all

    $exiftoolCLI = "D:\Tools\@Command Line Tools\exiftool\exiftool.exe";
    $items       = <get SelectedItemsPathNames>;
    $report      = "";
    foreach($item, $items, <crlf>, "e") {
        $data   = runret(lax("$exiftoolCLI" "$item"), <curpath>, 65001);
        $report .= $item . <crlf> . strrepeat("=", strlen($item)) . <crlf> . $data . <crlf 3>;
    }
    text $report;
One of my scripts helped you out? Please donate via Paypal

Post Reply