Convert a document to a multi-page TIFF using C#. To determine how the document is displayed on the image you need to specify additional options: resolution, number of pages, image binarization, etc.... How can I export a page range? A: Use the PageIndex and PageCount...// pages 2,3,4 doc . Save ( "range.tiff" , options ); Q: How do...