foxit.pdf.Watermark Class Reference
Inheritance diagram for foxit.pdf.Watermark:
foxit.common.Base

Public Member Functions

 Watermark (PDFDoc document, string text, WatermarkTextProperties properties, WatermarkSettings settings)
 Constructor, from specified text content.
More...
 
 Watermark (PDFDoc document, System.Drawing.Bitmap bitmap, WatermarkSettings settings)
 Constructor, from a specified bitmap.
More...
 
 Watermark (PDFDoc document, Image image, int frame_index, WatermarkSettings settings)
 Constructor, from a specified image.
More...
 
 Watermark (PDFDoc document, PDFPage page, WatermarkSettings settings)
 Constructor, from a specified page.
More...
 
 Watermark (Watermark other)
 Constructor, with another Watermark object.

 
float GetHeight ()
 Get the original height of current watermark.
More...
 
float GetWidth ()
 Get the original width of current watermark.
More...
 
bool InsertToPage (PDFPage page)
 Insert current watermark into a PDF page.
More...
 
bool IsEmpty ()
 Check whether current object is empty or not.
More...
 

Detailed Description

This class is mainly used to construct a watermark with specified parameters, and then insert it to PDF page. The watermark object can be constructed from text, bitmap or image, and PDF page.

Constructor & Destructor Documentation

◆ Watermark() [1/4]

foxit.pdf.Watermark.Watermark ( PDFDoc  document,
string  text,
WatermarkTextProperties  properties,
WatermarkSettings  settings 
)
inline

Constructor, from specified text content.

Parameters
documentA valid PDF document object, for which the constructed watermark will be used.
textA text string. This will be used as the content of the watermark. It should not be an empty string.
propertiesText properties for watermark.
settingsWatermark settings, containing layout setting.

◆ Watermark() [2/4]

foxit.pdf.Watermark.Watermark ( PDFDoc  document,
System.Drawing.Bitmap  bitmap,
WatermarkSettings  settings 
)
inline

Constructor, from a specified bitmap.

Parameters
documentA valid PDF document object, for which the constructed watermark will be used.
bitmapA valid Bitmap object used as the content of the watermark.
settingsWatermark settings, containing layout setting.

◆ Watermark() [3/4]

foxit.pdf.Watermark.Watermark ( PDFDoc  document,
Image  image,
int  frame_index,
WatermarkSettings  settings 
)
inline

Constructor, from a specified image.

Parameters
documentA valid PDF document object, for which the constructed watermark will be used.
imageA valid Image object. One frame of this image will be used as the content of the watermark. So, this image should contain at least one frame and the image type should not be Image::e_Unknown .
frame_indexFrame index, to specify which frame of the image will be used for the watermark. Valid range: from 0 to (count-1). count is returned by function common::Image::GetFrameCount.
settingsWatermark settings, containing layout setting.

◆ Watermark() [4/4]

foxit.pdf.Watermark.Watermark ( PDFDoc  document,
PDFPage  page,
WatermarkSettings  settings 
)
inline

Constructor, from a specified page.

Parameters
documentA valid PDF document object, for which the constructed watermark will be used.
pageA valid PDF page, whose content will be used as the content of the watermark.
settingsWatermark settings, containing layout setting.

Member Function Documentation

◆ GetHeight()

float foxit.pdf.Watermark.GetHeight ( )
inline

Get the original height of current watermark.

The original size of a watermark is based on no scaling and no rotation.

Returns
Watermark height.

◆ GetWidth()

float foxit.pdf.Watermark.GetWidth ( )
inline

Get the original width of current watermark.

The original size of a watermark is based on no scaling and no rotation.

Returns
Watermark width.

◆ InsertToPage()

bool foxit.pdf.Watermark.InsertToPage ( PDFPage  page)
inline

Insert current watermark into a PDF page.

If current watermark is treated as page content (which is specified by WatermarkSettings::SetFlags when current watermark is constructed), Foxit PDF SDK will generate content for the input PDF page by default after the watermark is inserted successfully. In this case , if user wants to render the PDF page correctly after this function has been called successfully, user is recommended to call function pdf::PDFPage::StartParse with parameter is_reparse true before rendering; otherwise, the page content may not be rendered as expected.

Parameters
pageA PDF page, to which current watermark would be inserted. This page should belong to the same document as current watermark belongs to. And the page should have been already parsed.
Returns
true means success, while false means failure.

◆ IsEmpty()

bool foxit.pdf.Watermark.IsEmpty ( )
inline

Check whether current object is empty or not.

When the current object is empty, that means current object is useless.

Returns
true means current object is empty, while false means not.

Foxit Software Corporation Logo
@2018 Foxit Software Incorporated. All rights reserved.