ExifTool TAGS Examples.

Advanced Renamer forum
#1 : 30/03-16 02:47
Marisa
Marisa
Posts: 2
https://drive.google.com/file/d/0B7ig0ULgZDvjV3U 3SGJxcUxoNmc/view?usp=sharing


Achievement not use any TAGS.

I can give an example with some TAGS.

I need to rename using the tags :

RED MATRIX
SPACE CONNECTION illuminant

Thank you


30/03-16 02:47
#2 : 30/03-16 19:03
Chris
Chris
Posts: 4
Hi :) I need a little more information on what exactly you are trying to do, but these tags should help with renaming using the "New Name" Method. I had to do a lot of digging to find an image attached with that tag, I even downloaded a couple hundred MB of RAW NEF files for it, until I found a nice JPG with it.

Tags for the "New Name Method":
<ExifTool:ConnectionSpaceIlluminant>
<ExifTool:RedMatrixColumn>
<ExifTool:GreenMatrixColumn>
<ExifTool:BlueMatrixColumn>

The "Script" module:
var exif = {};

// Split the matrixs.
exif.rMatrix = item.exifToolValue("RedMatrixColumn").split(' ');
exif.gMatrix = item.exifToolValue("GreenMatrixColumn").split(' ');
exif.bMatrix = item.exifToolValue("BlueMatrixColumn").split(' ');
exif.connectionSpaceIlluminant = item.exifToolValue("connectionSpaceIlluminant").split(' ');

return "Red[" + exif.rMatrix.join(',') + "]Space[" + exif.connectionSpaceIlluminant.join(',') + "]";

An Example of a generated name: Red[0.47554,0.25516,0.01845]Space[0.9642,1,0.82491].jpg

I'm happy to assist with any modification you need.

Cheers,
Chris.


30/03-16 19:03
#3 : 31/03-16 01:34
Marisa
Marisa
Posts: 2
Reply to #2:


Thank you so much.
For the professional response .
It has been very useful .

And with that example I can mix all tags .

http://www.sno.phy.queensu.ca/~phil/exiftool/Ta gNames/

ICC and Other

advancedrenamer undoubtedly is the best program for these tasks.

My next experiment is to order Black and white photographs , for many white , neutral ( gray ) and black .

I repeat: Thank you .
It has been very useful .


31/03-16 01:34