幻灯片过渡是从一张幻灯片导航到另一张幻灯片时显示的效果。这些增强了演示文稿的外观和感觉,并使它们更具吸引力。在某些情况下,您可能需要以编程方式将幻灯片转换添加到 PowerPoint 文件。为此,本文将教您如何使用 C++ 为 PowerPoint 幻灯片添加过渡效果。
用于在 PowerPoint 演示文稿中添加过渡的 C++ API
Aspose.Slides for C++ 是一个用于处理 PowerPoint 文件的 C++ API。它使您无需安装 Microsoft PowerPoint 即可创建、读取和更新 PowerPoint 文件。此外,该 API 允许您将幻灯片转换添加到 PowerPoint 演示文稿。您可以通过 NuGet 安装 API,也可以直接从 下载 部分下载。
PM> Install-Package Aspose.Slides.Cpp
使用 C++ 添加幻灯片过渡
以下是在 PowerPoint 演示文稿中添加幻灯片过渡的步骤。
- 首先,使用 Presentation 类加载 PowerPoint 文件。
- 使用 Presentation->getSlides()->idxget(0)->getSlideShowTransition()->setType (SlideShow::TransitionType value) 方法设置幻灯片过渡。
- 最后,使用 Presentation->Save(System::String fname, Export::SaveFormat format) 方法保存演示文稿。
以下示例代码演示了如何使用 C++ 向 PowerPoint 幻灯片添加过渡。
// 文件路径
const String sourceFilePath = u"SourceDirectory\\Slides\\SamplePresentation.pptx";
const String outputFilePath = u"OutputDirectory\\AddTransition_out.pptx";
// 加载演示文件
auto presentation = System::MakeObject<Presentation>(sourceFilePath);
// 在幻灯片 1 上应用圆形过渡
presentation->get_Slides()->idx_get(0)->get_SlideShowTransition()->set_Type(Aspose::Slides::SlideShow::TransitionType::Circle);
// 在幻灯片 2 上应用梳状过渡
presentation->get_Slides()->idx_get(1)->get_SlideShowTransition()->set_Type(Aspose::Slides::SlideShow::TransitionType::Comb);
// 保存演示文稿
presentation->Save(outputFilePath, Aspose::Slides::Export::SaveFormat::Pptx);
使用 C++ 添加高级幻灯片过渡
以下是使用 C++ 向幻灯片添加高级过渡的步骤。
- 首先,使用 Presentation 类加载 PowerPoint 文件。
- 使用 ISlideShowTransition 类设置转场类型和其他转场效果。
- 最后,使用 Presentation->Save(System::String fname, Export::SaveFormat format) 方法保存演示文稿。
以下示例代码展示了如何使用 C++ 添加高级幻灯片过渡。
// 文件路径
const String sourceFilePath = u"SourceDirectory\\Slides\\SamplePresentation.pptx";
const String outputFilePath = u"OutputDirectory\\AddAdvancedTransition_out.pptx";
// 加载演示文件
auto presentation = System::MakeObject<Presentation>(sourceFilePath);
// 在幻灯片 1 上应用圆形过渡
presentation->get_Slides()->idx_get(0)->get_SlideShowTransition()->set_Type(Aspose::Slides::SlideShow::TransitionType::Circle);
// 设置过渡时间为 3 秒
presentation->get_Slides()->idx_get(0)->get_SlideShowTransition()->set_AdvanceOnClick(true);
presentation->get_Slides()->idx_get(0)->get_SlideShowTransition()->set_AdvanceAfterTime(3000);
// 在幻灯片 2 上应用梳状过渡
presentation->get_Slides()->idx_get(1)->get_SlideShowTransition()->set_Type(Aspose::Slides::SlideShow::TransitionType::Comb);
// 设置过渡时间为 5 秒
presentation->get_Slides()->idx_get(1)->get_SlideShowTransition()->set_AdvanceOnClick(true);
presentation->get_Slides()->idx_get(1)->get_SlideShowTransition()->set_AdvanceAfterTime(5000);
// 保存演示文稿
presentation->Save(outputFilePath, Aspose::Slides::Export::SaveFormat::Pptx);
在 PowerPoint 演示文稿中设置变形过渡类型
在演示文稿中使用变形过渡来制作幻灯片之间的平滑过渡动画。以下部分介绍如何在 Microsoft PowerPoint 中添加变形过渡,并以编程方式使用 C++。
在 Microsoft PowerPoint 中设置变形过渡
以下是在 Microsoft PowerPoint 中添加变形过渡的步骤。
- 打开“过渡”选项卡。
- 选择变形过渡类型。
- 要选择过渡效果,请在“过渡”选项卡中选择“效果选项”。
使用 C++ 在 PowerPoint 演示文稿中设置变形过渡
与 Microsoft PowerPoint 类似,Aspose.Slides for C++ API 提供以下变形过渡效果。
- ByObject: Morph transition will be performed considering shapes as indivisible objects.
- ByWord: Morph transition will be performed by transferring text by words where possible.
- ByChar: Morph transition will be performed by transferring text by characters where possible.
以下是使用 C++ 在 PowerPoint 演示文稿中设置变形过渡的步骤。
- 使用 Presentation 类加载 PowerPoint 文件。
- 将过渡类型设置为 morph。
- 使用IMorphTransition->setMorphType(TransitionMorphType value)方法设置变形过渡效果。
- 使用 Presentation->Save(System::String fname, Export::SaveFormat format) 方法保存演示文稿。
以下示例代码显示了如何使用 C++ 在 PowerPoint 演示文稿中设置变形过渡。
// 文件路径
const String sourceFilePath = u"SourceDirectory\\Slides\\SamplePresentation.pptx";
const String outputFilePath = u"OutputDirectory\\AddMorphTransition_out.pptx";
// 加载演示文件
auto presentation = System::MakeObject<Presentation>(sourceFilePath);
// 添加变形过渡
presentation->get_Slides()->idx_get(0)->get_SlideShowTransition()->set_Type(Aspose::Slides::SlideShow::TransitionType::Morph);
auto morphTransition = System::DynamicCast<Aspose::Slides::SlideShow::IMorphTransition>(presentation->get_Slides()->idx_get(0)->get_SlideShowTransition()->get_Value());
morphTransition->set_MorphType(Aspose::Slides::SlideShow::TransitionMorphType::ByWord);
// 保存演示文稿
presentation->Save(outputFilePath, Aspose::Slides::Export::SaveFormat::Pptx);
获得免费许可证
为了在没有评估限制的情况下试用 API,您可以申请 免费的临时许可证。
结论
在本文中,您学习了如何使用 C++ 在 PowerPoint 演示文稿中添加幻灯片过渡。此外,您还了解了如何使用 Aspose.Slides for C++ API 为 PowerPoint 幻灯片添加变形过渡。它是一个强大且功能丰富的 API,提供了一系列用于处理 PowerPoint 文件的附加功能。您可以通过访问 官方文档 来详细探索 API。如有任何疑问,请随时通过我们的 免费支持论坛 与我们联系。