.tif to pdf conversion

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
bjkbsmith
Posts: 1
Joined: 2016-04-06T13:03:47-07:00
Authentication code: 1151

.tif to pdf conversion

Post by bjkbsmith »

I am trying to convert multi-file tif's to a multi-page pdf using command line.

Command:

convert \\image-location\1.tif \\image-location\2.tif "d:\new-location\firstname lastname date.pdf"

I get the following error.

Convert.exe: Unknown field with tag 34821 (0x8805) encountered. 'TIFFReadDirectory' @ warning/tiff.c/TIFFWarning/891

Please help

Thank you,
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: .tif to pdf conversion

Post by fmw42 »

This is just a warning about some tif meta data tags that are unknown to IM. You should still have and output PDF. To stop the warnings, add -quiet right after convert and before your input images. If you do not get a multipage pdf, then add -adjoin right before the output pdf.

Please always provide your IM version and platform when asking questions, since syntax may differ.
Post Reply