ExifTool Forum

ExifTool => Newbies => Topic started by: Franksen on September 05, 2013, 07:42:02 AM

Title: Thumbnail including complete EXIF data
Post by: Franksen on September 05, 2013, 07:42:02 AM
Is there a possibility to extract a thumbnail image including all EXIF data from original image ?

Thanks
Frank
Title: Re: Thumbnail including complete EXIF data
Post by: Phil Harvey on September 05, 2013, 07:55:13 AM
Hi Frank,

Try this:

1) exiftool -thumbnailimage -b image.jpg > thumb.jpg

2) exiftool -tagsfromfile image.jpg -all:all thumb.jpg

- Phil
Title: Re: Thumbnail including complete EXIF data
Post by: Franksen on September 05, 2013, 08:27:54 AM
How could I use this for extracting all images in a folder (incl. EXIF) ?

something like:
"exiftool -thumbnailimage -b -w _thumb.jpg DIR"

and then how to bring Exif tags inside all Thumbnails ?

Frank
Title: Re: Thumbnail including complete EXIF data
Post by: Phil Harvey on September 05, 2013, 09:30:48 AM
For an entire directory:

1) exiftool -thumbnailimage -b -w _thumb.jpg DIR

2) exiftool -tagsfromfile %d%-.6f.%e -all:all DIR/*_thumb.jpg

Next you're going to tell me you want to do this recursively for subdirectories... ;)

Edit: Forgot a minus sign in the %f format specifier to remove the characters from the end of the file name instead of the beginning.
Title: Re: Thumbnail including complete EXIF data
Post by: Franksen on September 05, 2013, 09:56:25 AM
Ahh,

Thank you very much.
Recursive is not needed (at the moment)

Best regards
Frank