com.groupdocs.watermark.options

Interfaces

Classes

com.groupdocs.watermark.options

Class PdfXObjectWatermarkOptions



  • public final class PdfXObjectWatermarkOptions
    extends PdfWatermarkOptions
    Represents watermark adding options when adding XObject watermark to a pdf document.

    Learn more:

    The following example demonstrates how to add a watermark to a particular page of a pdf document.

    PdfLoadOptions loadOptions = new PdfLoadOptions();
       Watermarker watermarker = new Watermarker("C:\\doc.pdf", loadOptions);
    
       ImageWatermark watermark = new ImageWatermark("C:\\watermark.png");
    
       PdfXObjectWatermarkOptions options = new PdfXObjectWatermarkOptions();
       options.setPageIndex(0);
    
       watermarker.add(watermark, options);
       watermarker.save("C:\\watermarked_doc.pdf");
       watermark.close();
       watermarker.close();
     
    • Constructor Detail

      • PdfXObjectWatermarkOptions

        public PdfXObjectWatermarkOptions()
        Initializes a new instance of the PdfXObjectWatermarkOptions class.
    • Method Detail

      • getPageIndex

        public final int getPageIndex()

        Gets the page index to add watermark to.

        Returns:
        The page index to add watermark to.
      • setPageIndex

        public final void setPageIndex(int value)

        Sets the page index to add watermark to.

        Parameters:
        value - The page index to add watermark to.