FPDFPage_SetArtBox method

void FPDFPage_SetArtBox(
  1. FPDF_PAGE page,
  2. double left,
  3. double bottom,
  4. double right,
  5. double top,
)

Set "ArtBox" entry to the page dictionary.

page - Handle to a page. left - The left of the rectangle. bottom - The bottom of the rectangle. right - The right of the rectangle. top - The top of the rectangle.

Implementation

void FPDFPage_SetArtBox(
  FPDF_PAGE page,
  double left,
  double bottom,
  double right,
  double top,
) {
  return _FPDFPage_SetArtBox(page, left, bottom, right, top);
}