ToTiff()

Convert::ToTiff(System::SharedPtr<Presentation>, System::String) method

Converts the input presentation to a set of TIFF format images.

If the output file name is given as "myPath/myFilename.tiff", the result will be saved as a set of "myPath/myFilename_N.tiff" files, where N is a slide number.

static void Aspose::Slides::LowCode::Convert::ToTiff(System::SharedPtr<Presentation> pres, System::String outputFileName)

Arguments

ParameterTypeDescription
presSystem::SharedPtr<Presentation>The input presentation.
outputFileNameSystem::StringThe output file name.

Remarks

auto pres = System::MakeObject<Presentation>(u"pres.pptx");
Convert::ToTiff(pres, u"presImage.tiff");

Convert::ToTiff(System::SharedPtr<Presentation>, System::String, System::SharedPtr<Aspose::Slides::Export::ITiffOptions>, bool) method

Converts the input presentation to TIFF format with custom options. If the output file name is given as "myPath/myFilename.tiff" and multipage is false, the result will be saved as a set of "myPath/myFilename_N.tiff" files, where N is a slide number. Otherwise, if multipage is true, the result will be a multi-page "myPath/myFilename.tiff" document.

static void Aspose::Slides::LowCode::Convert::ToTiff(System::SharedPtr<Presentation> pres, System::String outputFileName, System::SharedPtr<Aspose::Slides::Export::ITiffOptions> options, bool multipage)

Arguments

ParameterTypeDescription
presSystem::SharedPtr<Presentation>The input presentation.
outputFileNameSystem::StringThe output file name.
optionsSystem::SharedPtr<Aspose::Slides::Export::ITiffOptions>The TIFF saving options.
multipageboolSpecifies whether the generated TIFF document should be a multi-page.

Remarks

System::SharedPtr<ITiffOptions> options = System::MakeObject<TiffOptions>();
System::SharedPtr<NotesCommentsLayoutingOptions> slidesLayoutOptions = System::MakeObject<NotesCommentsLayoutingOptions>();
slidesLayoutOptions->set_NotesPosition(Aspose::Slides::Export::NotesPositions::BottomTruncated);
options->set_CompressionType(TiffCompressionTypes::CCITT3);

auto pres = System::MakeObject<Presentation>(u"pres.pptx");
Convert::ToTiff(pres, u"pres.tiff", options, false);

See Also