PPT PPTX ODP POT ppsx
Aspose.Slides  for Java
ODP

Add Watermark to ODP Presentation using Java

Build your own Java apps to insert text or image watermark into PPT, PPTX, or ODP presentation using server-side APIs.

Add Watermark to ODP Presentation via Java

Using Aspose.Slides for Java, you can add watermark to ODP presentation. Watermarks are an essential part of any presentation. They are used to protect the content of the presentation from being copied or used without permission. A watermark is a visible or invisible image or text that is placed on top of the presentation. It can be used to identify the owner of the presentation and to prevent unauthorized use. Watermarks can also be used to add a professional touch to the presentation and to make it look more polished.

Add Text Watermark to ODP using Java


Presentation pres = new Presentation();
try {
    IMasterSlide master = pres.getMasters().get_Item(0);
    IAutoShape watermarkShape = master.getShapes().addAutoShape(ShapeType.Triangle, 0, 0, 0, 0);
    ITextFrame watermarkTextFrame = watermarkShape.addTextFrame("Watermark");

    pres.save("watermark.odp", SaveFormat.Odp);
} finally {
    if (pres != null) pres.dispose();
}

Add Image Watermark to ODP Presentation using Java


Presentation pres = new Presentation();
try {
    IPPImage image = pres.getImages().addImage(Files.readAllBytes(Paths.get("watermark.png")));

    IMasterSlide master = pres.getMasters().get_Item(0);

    IAutoShape watermarkShape = master.getShapes().addAutoShape(ShapeType.Triangle, 0, 0, 100, 100);

    watermarkShape.getFillFormat().setFillType(FillType.Picture);
    watermarkShape.getFillFormat().getPictureFillFormat().getPicture().setImage(image);
    watermarkShape.getFillFormat().getPictureFillFormat().setPictureFillMode(PictureFillMode.Stretch);

    pres.save("watermark2.odp", SaveFormat.Odp);
} finally {
    if (pres != null) pres.dispose();
}

How to Add Watermark to ODP via Java

These are the steps to add text watermark to ODP files.

  1. Load ODP with an instance of Presentation

  2. Select the master presentation

  3. Add shape type using AddAutoShape method

  4. Add watermark text using AddTextFrame method

  5. Save result in ODP format

Other Supported Formats

Using Java, You can also add Watermark to the following formats: