-
Notifications
You must be signed in to change notification settings - Fork 3
Rendered As Tiff
Aspose edited this page Mar 4, 2014
·
2 revisions
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:
- Converting Presentation to TIFF with default size.
- Converting Presentation to TIFF with custom size
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