> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Page

> The Page object — properties of a single document page, including image dimensions and the preprocessed image.

`Page` represents a single page of the document being processed.

## Properties

| Name            | Type                                                                                    | Access    | Description                                                                                              |
| :-------------- | :-------------------------------------------------------------------------------------- | :-------- | :------------------------------------------------------------------------------------------------------- |
| **Id**          | string                                                                                  | Read-only | The unique identifier of the page.                                                                       |
| **ImageHeight** | number                                                                                  | Read-only | The height of the page image in pixels.                                                                  |
| **ImageWidth**  | number                                                                                  | Read-only | The width of the page image in pixels.                                                                   |
| **Index**       | number                                                                                  | Read-only | The page number in the document (starting at 0).                                                         |
| **Image**       | [BinaryFile](/vantage/documentation/skill-designer/process/custom-activity/binary-file) | Read-only | The preprocessed source image of the page. Attach it to an HTTP request to send the page in JPEG format. |

## Related topics

<CardGroup cols={3}>
  <Card title="Document" icon="file-lines" href="/vantage/documentation/skill-designer/process/custom-activity/document">
    The document currently being processed by the Custom activity.
  </Card>

  <Card title="BinaryFile" icon="file-binary" href="/vantage/documentation/skill-designer/process/custom-activity/binary-file">
    File data in binary format — typically the pre-preprocessing source image.
  </Card>

  <Card title="Object model" icon="diagram-project" href="/vantage/documentation/skill-designer/process/custom-activity/object-model">
    Full JavaScript object reference for Custom activity scripts.
  </Card>
</CardGroup>
