Represents a page loaded from the PDF document.
// Load an existing PDF document
let document: PdfDocument = new PdfDocument(data);
// Access first page
let page: PdfPage = document.getPage(0);
// Save the document
document.save('output.pdf');
// Destroy the document
document.destroy();
PdfAnnotationCollection
Gets the collection of the page’s annotations (Read only).
number[]
Gets the bounds that define the area intended for display or printing in the PDF viewer application (Read only).
PdfGraphics
Gets the graphics of the page (Read only).
number[]
Gets the size that specify the width and height of the page (Read only).
PdfPageOrientation
Gets the orientation of the page (Read only).
PdfRotationAngle
Gets the rotation angle of the page (Read only).
number[]
Gets the size of the page (Read only).
PdfFormFieldsTabOrder
Gets the tab order of a PDF form field.