Jéssica Akemi
Jéssica Akemi

Reputation: 3

Exiftool shortens string output

I am trying to get a string output using Exiftool. The original value should be:

  1.00000095367432 -0.00040300001273863 -0.000503999995999038 0.000391999987186864 0.9999960064888 0.00425100000575185 -0.00258799991570413 -0.00425100000575185 0.999997973442078

But when I run the command:

exiftool -a -u -TAG image.jpg

Exiftool shortens the output. It returns:

1.00000095367432 -0.00040300001273863 -0.00050399999599[...]

How can I get the entire string value?

Upvotes: 0

Views: 157

Answers (1)

StarGeek
StarGeek

Reputation: 5781

To get the full output, try disabling printConv. You can do this for all tags with the -n option but if you are extracting other tags at the same time, you can use the per tag option by adding # to the end of the tag name e.g exiftool -u -a -Manufacturer0x7121# .

Upvotes: 1

Related Questions