Add Watermark via Java

Add watermarks to PDF document programmatically using Aspose.PDF for Java Library

Add Watermark to PDF File Using Java Library

Add Watermark to PDF File, we’ll use Aspose.PDF for Java API, which is a feature-rich, powerful, and easy-to-use conversion API for the Java platform. You can download its latest version directly from Maven and install it within your Maven-based project by adding the following configurations to the pom.xml.

Repository

<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java AP</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

Dependency

<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-pdf</artifactId>
<version>version of aspose-pdf API</version>
</dependency>

Add Watermark via Java


You need Aspose.PDF for Java to try the code in your environment.

  1. Load the PDF with an instance of Document.
  2. Create an instance of WatermarkArtifact.
  3. Set properties of WatermarkArtifact object.
  4. Add watermark using method Add of Aspose.Pdf.Page.Artifacts collection class.
  5. Save PDF file

Add Watermark to PDF - Java


    doc = new com.aspose.pdf.Document("1.pdf");

    artifact = new com.aspose.pdf.WatermarkArtifact();
    artifact.setImage("1.jpg");

    artifact.setArtifactHorizontalAlignment(com.aspose.pdf.HorizontalAlignment.Center);
    artifact.setArtifactVerticalAlignment(com.aspose.pdf.VerticalAlignment.Center);
    artifact.setRotation(15);
    artifact.setOpacity(1);
    artifact.setBackground(true);
    doc.getPages().get_Item(1).getArtifacts().add(artifact);

    //save result pdf to file
    doc.save("add_watermark.pdf", com.aspose.pdf.SaveFormat.Pdf);