Hello,
two informations to start ...
first english is for me not that outperformed language - sorry sorry if i write some things terrible to understand :o
second i try to find answers to my question here an in the help section without success, so, sorry again if i ask an answered question!
The task:
I try to write image informations into an csv file.
This works probably with the syntax:
c:exif-tools>exiftool -csv -r c:\\exif-images\ -f > test.csv
My example imgae include also keywords± and i'm not able to write this content to the csv.
I tried to use the tags: -common and -keywords± with no sucess.
My favorite solution will be only writing the imagefilename, resolution, keywords
I also tried in vain to find the TagNames description :-\
I think and hope this is easy for you people here to solve.
Thank you,
regards Sascha
Sascha, please try:
exiftool -csv -r -FileName -XResolution -YResolution -Subject c:\\exif-images\ > test.csv
Depending on the files, there may be more than one resolution tag, so adding -a to force duplicates may help:
exiftool -csv -r -a -FileName -XResolution -YResolution -Subject c:\\exif-images\ > test.csv
To find the tag names on a single file, try:
exiftool -a -G1 -s PATH-to-IMAGE
Hello Stephan,
you solved my problem.
Thank you very much!
Glad to help Sascha!