Home General

Multipage TIFF

edited June 2010 in General
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.

Thanks

Comments

  • edited June 2010
    Hi Rick,

    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

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.