I'm trying PDFRasterizer in order to transform PDF to Tiff file (for fax sending). Is it possible to specify a particular width for the generated image in the ConvertToTiffOptions?
The Resolution property of the ConvertToTiffOptions can be used for this.
The dimensions of PDF pages are given in points (1 point = 1/72 inch). So, if you have a PDF page with a width of 400, and specify Resolution = 72, the resulting tiff will have width 400 as well. Setting the resolution to 144 will result in tiff that is 800 pixels wide.