How to create binary TIFF image?

Is there any utility to create/convert a image to binary TIFF image. I want to use that binary tiff image as a input to a software ( an open source project which takes only binary tiff images as input).

Answer

You could use ImageMagick’s convert option with the -monochrome parameter, for example:

convert -monochrome input.tif output.tif

Convert has many options for compression, threshold, filtering, etc. See this link for the options. ImageMagick runs on Linux and Windows.

Attribution
Source : Link , Question Author : pineapple , Answer Author : W_Whalley

Leave a Comment