PPT
PPTX
ODP
POT
ppsx
PPT
使用 C++ 將水印添加到 PPT 演示文稿
構建您自己的 C++ 應用程序,以使用服務器端 API 將文本或圖像水印插入到 PPT、PPTX 或 ODP 演示文稿中。
通過 C++ 為 PPT 演示文稿添加水印
使用 Aspose.Slides for C++,您可以為 PPT 演示文稿添加水印。水印是任何演示文稿的重要組成部分。它們用於保護演示文稿的內容不被複製或未經許可使用。水印是放置在演示文稿頂部的可見或不可見的圖像或文本。它可用於識別演示文稿的所有者並防止未經授權的使用。水印也可用於為演示文稿增添專業氣息並使其看起來更加精美。
使用 C++ 將文本水印添加到 PPT
auto presentation = System::MakeObject<Presentation>();
auto slide = presentation->get_Slides()->idx_get(0);
auto master = presentation->get_Masters()->idx_get(0);
auto watermarkShape = slide->get_Shapes()->AddAutoShape(ShapeType::Triangle, 0.0f, 0.0f, 0.0f, 0.0f);
auto watermarkTextFrame = watermarkShape->AddTextFrame(u"Watermark");
presentation->Save(u"watermark.ppt", SaveFormat::Ppt);
使用 C++ 將圖像水印添加到 PPT 演示文稿
auto presentation = System::MakeObject<Presentation>();
auto slide = presentation->get_Slides()->idx_get(0);
auto master = presentation->get_Masters()->idx_get(0);
auto watermarkShape = slide->get_Shapes()->AddAutoShape(ShapeType::Triangle, 0.0f, 0.0f, 0.0f, 0.0f);
auto image = presentation->get_Images()->AddImage(:File::ReadAllBytes(u"watermark.png"));
watermarkShape->get_FillFormat()->set_FillType(FillType::Picture);
watermarkShape->get_FillFormat()->get_PictureFillFormat()->get_Picture()->set_Image(image);
watermarkShape->get_FillFormat()->get_PictureFillFormat()->set_PictureFillMode(PictureFillMode::Stretch);
presentation->Save(u"watermark2.ppt", SaveFormat::Ppt);
如何通過 C++ 為 PPT 添加水印
這些是將文本水印添加到 PPT 文件的步驟。
使用 Presentation 實例加載 PPT
選擇主演示文稿
使用 AddAutoShape 方法添加形狀類型
使用 AddTextFrame 方法添加水印文本
以 PPT 格式保存結果