Click or drag to resize

PdfiumFPDFPage_GetMediaBox Method

Get "MediaBox" entry from the page dictionary.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static bool FPDFPage_GetMediaBox(
	IntPtr page,
	out float left,
	out float bottom,
	out float right,
	out float top
)

Parameters

page  IntPtr
Handle to a page. Returned by FPDF_LoadPage(IntPtr, Int32) function
left  Single
Pointer to a double value receiving the left of the rectangle.
bottom  Single
Pointer to a double value receiving the bottom of the rectangle.
right  Single
Pointer to a double value receiving the right of the rectangle.
top  Single
Pointer to a double value receiving the top of the rectangle.

Return Value

Boolean
True if success, else False
Remarks
The media box defines the boundaries of the physical medium on which the page is to be printed. It may include any extended area surrounding the finished page for bleed, printing marks, or other such purposes. It may also include areas close to the edges of the medium that cannot be marked because of physical limitations of the output device. Content falling outside this boundary can safely be discarded without affecting the meaning of the PDF file.
See Also