Microsoft PowerPoint 提供了根据您的需要设置 PowerPoint 幻灯片背景的选项。在某些情况下,您可能需要以编程方式设置 PowerPoint 幻灯片的背景。为此,本文将教您如何使用 C++ 设置 PowerPoint 幻灯片的背景。具体来说,您将学习如何设置纯色、渐变和图像背景。

用于在 PowerPoint 演示文稿中设置幻灯片背景的 C++ API

我们将使用 Aspose.Slides for C++ API 在 Powerpoint 演示文稿中设置幻灯片背景。它是一个强大且功能丰富的 API,支持创建、读取和修改 PowerPoint 文件,而无需额外的软件。您可以通过 NuGet 安装 API,也可以直接从 下载 部分下载。

PM> Install-Package Aspose.Slides.Cpp

使用 C++ 设置普通幻灯片的背景颜色

以下是使用 C++ 设置普通幻灯片背景颜色的步骤。

以下示例代码展示了如何使用 C++ 设置普通幻灯片的背景颜色。

// 文件路径
const String sourceFilePath = u"SourceDirectory\\Slides\\Presentation2.pptx";
const String outputFilePath = u"OutputDirectory\\SetSlideBackground_out.pptx";

// 加载演示文件
auto presentation = System::MakeObject<Presentation>(sourceFilePath);

// 将第一个 ISlide 的背景颜色设置为蓝色
presentation->get_Slides()->idx_get(0)->get_Background()->set_Type(BackgroundType::OwnBackground);
presentation->get_Slides()->idx_get(0)->get_Background()->get_FillFormat()->set_FillType(FillType::Solid);
presentation->get_Slides()->idx_get(0)->get_Background()->get_FillFormat()->get_SolidFillColor()->set_Color(System::Drawing::Color::get_Blue());

// 保存演示文稿
presentation->Save(outputFilePath, Aspose::Slides::Export::SaveFormat::Pptx);

下面给出的是设置背景颜色之前的幻灯片图像。

设置背景之前的幻灯片图像

下面是设置背景色后的幻灯片图片。

示例代码生成的输出图像

使用 C++ 设置母版幻灯片的背景颜色

为了设置母版幻灯片的背景颜色,请按照以下步骤操作。

以下示例代码展示了如何使用 C++ 设置母版幻灯片的背景颜色。

// 文件路径
const String sourceFilePath = u"SourceDirectory\\Slides\\Presentation2.pptx";
const String outputFilePath = u"OutputDirectory\\SetMasterSlideBackground_out.pptx";

// 加载演示文件
auto presentation = System::MakeObject<Presentation>(sourceFilePath);

// 将 Master ISlide 的背景颜色设置为 Forest Green
presentation->get_Masters()->idx_get(0)->get_Background()->set_Type(BackgroundType::OwnBackground);
presentation->get_Masters()->idx_get(0)->get_Background()->get_FillFormat()->set_FillType(FillType::Solid);
presentation->get_Masters()->idx_get(0)->get_Background()->get_FillFormat()->get_SolidFillColor()->set_Color(System::Drawing::Color::get_ForestGreen());

// 保存演示文稿
presentation->Save(outputFilePath, Aspose::Slides::Export::SaveFormat::Pptx);
示例代码生成的输出图像

示例代码生成的输出图像

使用 C++ 设置幻灯片的渐变背景颜色

除了使用纯色之外,您还可以将渐变背景颜色应用于 PowerPoint 幻灯片。为了实现这一点,请按照以下步骤操作。

以下示例代码展示了如何使用 C++ 设置幻灯片的渐变背景颜色。

// 文件路径
const String sourceFilePath = u"SourceDirectory\\Slides\\Presentation2.pptx";
const String outputFilePath = u"OutputDirectory\\SetSlideGradientBackground_out.pptx";

// 加载演示文件
auto presentation = System::MakeObject<Presentation>(sourceFilePath);

// 将渐变效果应用于背景
presentation->get_Slides()->idx_get(0)->get_Background()->set_Type(BackgroundType::OwnBackground);
presentation->get_Slides()->idx_get(0)->get_Background()->get_FillFormat()->set_FillType(FillType::Gradient);
presentation->get_Slides()->idx_get(0)->get_Background()->get_FillFormat()->get_GradientFormat()->set_TileFlip(TileFlip::FlipBoth);

// 保存演示文稿
presentation->Save(outputFilePath, Aspose::Slides::Export::SaveFormat::Pptx);
示例代码生成的输出图像

示例代码生成的输出图像

使用 C++ 将图像设置为幻灯片背景

要将图像用作幻灯片背景,请按照以下步骤操作。

以下示例代码展示了如何使用 C++ 将图像设置为幻灯片背景。

// 文件路径
const String sourceFilePath = u"SourceDirectory\\Slides\\Presentation2.pptx";
const String imageFilePath = u"SourceDirectory\\Images\\Tulips.jpg";
const String outputFilePath = u"OutputDirectory\\SetSlideImageBackground_out.pptx";

// 加载演示文件
auto presentation = System::MakeObject<Presentation>(sourceFilePath);

// 设置背景属性
presentation->get_Slides()->idx_get(0)->get_Background()->set_Type(BackgroundType::OwnBackground);
presentation->get_Slides()->idx_get(0)->get_Background()->get_FillFormat()->set_FillType(FillType::Picture);
presentation->get_Slides()->idx_get(0)->get_Background()->get_FillFormat()->get_PictureFillFormat()->set_PictureFillMode(PictureFillMode::Stretch);

// 获取图片
auto bitmap = MakeObject<System::Drawing::Bitmap>(imageFilePath);

// 将图像添加到演示文稿的图像集合
SharedPtr<IPPImage> imgx = presentation->get_Images()->AddImage(bitmap);

// 将图像设置为背景
presentation->get_Slides()->idx_get(0)->get_Background()->get_FillFormat()->get_PictureFillFormat()->get_Picture()->set_Image(imgx);

// 保存演示文稿
presentation->Save(outputFilePath, Aspose::Slides::Export::SaveFormat::Pptx);
标题示例代码生成的输出图像

获得免费许可证

为了在没有评估限制的情况下试用 API,您可以申请 免费的临时许可证

结论

在本文中,您学习了如何使用 C++ 设置 PowerPoint 幻灯片的背景。具体来说,您已经学习了如何使用 Aspose.Slides for C++ API 设置纯色、渐变和图像背景。它是一个强大的 API,提供了一系列用于处理 PowerPoint 文件的附加功能。您可以通过访问 官方文档 来详细探索 API。如有任何疑问,请随时通过我们的 免费支持论坛 与我们联系。

也可以看看