Fax TIFF support?

Q: I am interest with your product that capable to convert PDF to
Image. I would like to clarify whether your converter support FAX TIFF
or not? Thanks.
-----
A: You can use both PDF2Image (http://www.pdftron.com/pdf2image) and
PDFNet SDK (http://www.pdftron.com/net) to convert PDF tp monochrome
(1 bit per pixel) TIFF.

If you are looking at PDF2Image simple add "--mono" option.

If you would like to accomplish the same thing using PDFNet pass a
rendering hint that contains (BPC, 1) key value pair to any of the
rendering functions in PDFDraw class. For a concrete sample code,
please see PDFDraw sample project (http://www.pdftron.com/net/
samplecode.html#PDFDraw).

// Initialize render 'gray_hint' parameter, that is used to control
the
// rendering process. In this case we tell the rasterizer to export
the image
// as 1 Bit Per Component (BPC) image.
Obj mono_hint=hint_set.CreateDict();
mono_hint.PutNumber("BPC", 1);
draw.Export(page, "mono.tif", "TIF", mono_hint);