PPT
PPTX
ODP
POT
PPSX
PPT
Add Watermark to PPT Presentation using C++
Use Aspose.Slides for C++ to add text or image watermarks to presentation files without Microsoft PowerPoint.
Add Watermark to PPT Presentation via C++
Aspose.Slides for C++ lets you add text or image watermarks to PPT presentations. Add a watermark shape to the master slide with AddAutoShape, add text with AddTextFrame, or fill the shape with an image loaded through File::ReadAllBytes and AddImage.
Add Text Watermark to PPT using C++
auto presentation = MakeObject<Presentation>(u"presentation.ppt");
auto masterSlide = presentation->get_Master(0);
auto watermarkShape = masterSlide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 100, 100, 400, 80);
watermarkShape->AddTextFrame(u"Watermark");
presentation->Save(u"watermarked-presentation.ppt", SaveFormat::Ppt);
presentation->Dispose();
Add Image Watermark to PPT Presentation using C++
auto presentation = MakeObject<Presentation>(u"presentation.ppt");
auto masterSlide = presentation->get_Master(0);
auto watermarkShape = masterSlide->get_Shapes()->AddAutoShape(ShapeType::Rectangle, 100, 100, 400, 200);
auto imageData = File::ReadAllBytes(u"watermark.png");
auto watermarkImage = presentation->get_Images()->AddImage(imageData);
watermarkShape->get_FillFormat()->set_FillType(FillType::Picture);
watermarkShape->get_FillFormat()->get_PictureFillFormat()->get_Picture()->set_Image(watermarkImage);
watermarkShape->get_FillFormat()->get_PictureFillFormat()->set_PictureFillMode(PictureFillMode::Stretch);
presentation->Save(u"image-watermarked-presentation.ppt", SaveFormat::Ppt);
presentation->Dispose();
How to Add Watermark to PPT via C++
These are the steps to add a text watermark to PPT files.
Load the PPT file with the
Presentationclass.Select the master slide from the
Presentation::get_Masterscollection.Add a watermark shape with the
AddAutoShapemethod.Add watermark text with the
AddTextFramemethod or set a picture fill withAddImage.Save the watermarked file with
SaveFormat::Ppt.