Wiki

Clone wiki

Aspose for OpenXML / Rendered As Tiff

TIFF format is known by its flexibility to accommodate multipage images and data. Keeping in view the importance and popularity of TIFF format, Aspose.Slides for .NET provides the support for converting presentations into TIFF document. This article explains how different tiff export options:

The Save method exposed by Presentation class can be called by developers to convert the whole presentation into TIFF document. Further, TiffOptions class exposes ImageSize property enabling the developer to define the size of the image if required.

  //Instantiate a Presentation object that represents a presentation file
            using (PresentationEx pres = new PresentationEx("Conversion.pptx"))
            {

                //Saving the presentation to TIFF document
                pres.Save("Converted.tiff", Aspose.Slides.Export.SaveFormat.Tiff);
            }

Download

Updated