Page 1 of 1

Null ASCII value

Posted: 2016-09-20T12:04:37-07:00
by ltdan
I'm trying to resize an image (tiff file) but I get the following error :

Code: Select all

ASCII value for tag "Copyright" contains null byte 
in value; value incorrectly truncated during reading due to implementation 
limitations. `TIFFFetchNormalTag' @ warning/tiff.c/TIFFWarnings/824.
When I open it in Gimp I also get the same error. How can I edit this so its not null or is there some other core reason for this?

Re: Null ASCII value

Posted: 2016-09-20T12:47:06-07:00
by snibgo
It's just a warning. "-quiet" will turn off warnings. Or you can convert it to another file:

Code: Select all

convert in.tiff out.tiff
Then work with out.tiff.