Error reading tag when converted tiff

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Shoelaces
Posts: 1
Joined: 2016-08-29T13:55:57-07:00
Authentication code: 1151

Error reading tag when converted tiff

Post by Shoelaces »

I am trying to convert a tiff via the command line w/ the following syntax:

covert file.tiff newfile.tiff

The file gets created but I have the following output:
convert: ASCII value for tag "DateTime" contains null byte in value; value incorrectly truncated during reading due to implementation limitations. `TIFFFetchNormalTag' @ warning/tiff.c/TIFFWarnings/905.
convert: ASCII value for tag "Artist" contains null byte in value; value incorrectly truncated during reading due to implementation limitations. `TIFFFetchNormalTag' @ warning/tiff.c/TIFFWarnings/905.

I don't care about the tags being merged into the new file, so I attempted to bypass the tags using:
-define tiff:exif-properties=false

But the error continues to appear in the output. Any guidance?
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Error reading tag when converted tiff

Post by snibgo »

Those aren't errors, merely warnings. Don't worry about them. You can use "-quiet" to supress warnings, if you want.
snibgo's IM pages: im.snibgo.com
Post Reply