Only part of copyright is being transferred to new file

Started by my_untethered_rage, November 08, 2022, 11:44:44 AM

Previous topic - Next topic

my_untethered_rage

Hi all,

I'm very new to Exiftool and I need some help.

I'm converting large numbers of tif to jpg with Imagemagick and using Exiftool to copy the metadata over to the new files. Everything works fine but the copyright is.. odd. It only adds "© All rights reserved." but the full copyright notice is longer and is present on the tif before and after converting.

Does anyone have any ideas why this is happening? Any help is very much appreciated.

I can upload files if necessary but I'll need to generate test ones because.. well.. copyright  ;D

My code
@echo OFF

magick mogrify -format jpg *.tif

exiftool -tagsfromfile %%d%%f.tif -ext jpg "C:\Users\ScannerAdmin\Desktop\TEST" -overwrite_original

Cheers
G

StarGeek

#1
Are you checking the results with exiftool or with some other program?  Are XMP sidecar files used by that other program?
"It didn't work" isn't helpful. What was the exact command used and the output.
Read FAQ #3 and use that cmd
Please use the Code button for exiftool output

Please include your OS/Exiftool version/filetype

greybeard

An example would be helpful - a test sample would be OK so long as it exhibits the problem

StarGeek

Without more data, I think this would FAQ #9b and FAQ #3.

You're not specifying which tags to copy in your -TagsFromFile operation.  These means that exiftool will copy all the tags it can but the resulting locations may not be the same as in the original file.  For example, if the source file has the XMP:Headline tag, the target file will end up with the IPTC:Headline tag and not the XMP:Headline.

You might want to try this command. Copying with -All:All will copy tags to the target file and keep the exact same locations as in the source file.

For clarity, I've moved the -ext (-extension) option to before the -TagsFromFile option.  This makes it more clear which tags are being copied in that operation.

exiftool -overwrite_original -ext jpg -tagsfromfile %%d%%f.tif -All:All "C:\Users\ScannerAdmin\Desktop\TEST"
"It didn't work" isn't helpful. What was the exact command used and the output.
Read FAQ #3 and use that cmd
Please use the Code button for exiftool output

Please include your OS/Exiftool version/filetype