 | PdfiumFPDFPage_InsertClipPath Method |
Clip the page content, the page content that outside the clipping region become invisible.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFPage_InsertClipPath(
IntPtr page,
IntPtr clip_path
)
Public Shared Sub FPDFPage_InsertClipPath (
page As IntPtr,
clip_path As IntPtr
)
public:
static void FPDFPage_InsertClipPath(
IntPtr page,
IntPtr clip_path
)
static member FPDFPage_InsertClipPath :
page : IntPtr *
clip_path : IntPtr -> unit
public static void FPDFPage_InsertClipPath(
IntPtr page,
IntPtr clip_path
)
Patagames.Pdf.Pdfium.FPDFPage_InsertClipPath = function(page, clip_path);
Parameters
- page IntPtr
- A page handle. Returned by FPDF_LoadPage(IntPtr, Int32) function
- clip_path IntPtr
- A handle to the clip path. Returned by FPDF_CreateClipPath(Single, Single, Single, Single) function.
RemarksA clip path will be inserted before the page content stream or content array.
In this way, the page content will be clipped by this clip path.
See Also