Converting Multiple Page Tiff Files

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
jmassey

Converting Multiple Page Tiff Files

Post by jmassey »

I am trying to convert multiple page color tiff files to multiple page black and white tiff files.

I would use monochrome to do the job, but some of the pages have a red background and thus appear all black.

When I try to use -threshold 35, the pages are all white. The code I used is below:

Code: Select all

convert color.tif -threshold 35 bw.tif
When I use the same -threshold 35 on single page tiff files with the same image, it comes out correctly.

Any help would be greatly appreciated. Thanks!
jmassey

Re: Converting Multiple Page Tiff Files

Post by jmassey »

Nevermind. I forgot to include the % after the 35. Sorry.
Post Reply