How to export report to TIFF with different DPI ?
Using RAD Studio 2010 (CBuilder), FastReport 4.13 VCL
...
TIFFExportObj->MultiImage = true; // !!! Important! With setting it to false, we have one long page, properly scaled.
TIFFExportObj->Resolution = 150;
ReportObject->Export( TIFFExportObj );
...
As a result we have a greater DPI but cuted into 4 x A4 format pages with standard 96dpi.
One page is rendered on four A4 pages (increased width and height).
How to do this properly A4 report -> A4 tiff with increased DPI instead of standard 96 ?
Hint: The exactly same operation with TJPEGExportObj works great.
...
TIFFExportObj->MultiImage = true; // !!! Important! With setting it to false, we have one long page, properly scaled.
TIFFExportObj->Resolution = 150;
ReportObject->Export( TIFFExportObj );
...
As a result we have a greater DPI but cuted into 4 x A4 format pages with standard 96dpi.
One page is rendered on four A4 pages (increased width and height).
How to do this properly A4 report -> A4 tiff with increased DPI instead of standard 96 ?
Hint: The exactly same operation with TJPEGExportObj works great.