Page Data Type

A page in the PDF document.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs description
annotationCount int element 1/1 The number of annotations on the page.
cropBox Rectangle element 0/1 The crop box for the page.
height double element 1/1 The height of the page in points (72 DPI). Default value is 792.
index int element 1/1 The index of the page in the document. Default value is -1.
link Link element 0/1 Link to the page.
mediaBox Rectangle element 0/1 The media box for the page.
rotation int element 1/1 The rotation of the page in degrees.
width double element 1/1 The width of the page in points (72 DPI). Default value is 612.

Example

<Page>
  <width>...</width>
  <height>...</height>
  <index>...</index>
  <annotationCount>...</annotationCount>
  <link>
    <rel>...</rel>
    <href>...</href>
  </link>
  <rotation>...</rotation>
  <mediaBox>
    <x>...</x>
    <y>...</y>
    <width>...</width>
    <height>...</height>
  </mediaBox>
  <cropBox>
    <x>...</x>
    <y>...</y>
    <width>...</width>
    <height>...</height>
  </cropBox>
</Page>