I am trying to create a multipage tiff image. Using the examples from the website I am ending up with multiple files of one page each. How can I get a single tiff with multiple pages.
ReportBuilder 12.01 includes support for multi-page TIFF export. There is now a property on the TppTIFFDevice named SingleFile. Setting this to true will export the report as a single file.
uses ppTIFFDevice;
procedure TForm1.ppReport1FileDeviceCreate(Sender: TObject); begin if (ppReport1.FileDevice is TppTIFFDevice) then TppTIFFDevice(ppReport1.FileDevice).SingleFile := True; end;
Comments
ReportBuilder 12.01 includes support for multi-page TIFF export. There is
now a property on the TppTIFFDevice named SingleFile. Setting this to true
will export the report as a single file.
uses
ppTIFFDevice;
procedure TForm1.ppReport1FileDeviceCreate(Sender: TObject);
begin
if (ppReport1.FileDevice is TppTIFFDevice) then
TppTIFFDevice(ppReport1.FileDevice).SingleFile := True;
end;
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com