Skip to main content
Version: v2023.18.0

Document layout

A document layout describe the structure of a document.

A new servlet is deployed to display a Json file corresponding to the structure of a document.

Request

This functionality is accessible via the servlet: documentLayout

Usable in GET

Request example

curl -X GET 'http://<arender_host>/ARender/arendergwt/documentLayout?uuid=doc1UUID'

Servlet Response

The browser displays the document structure in Json language.

Here an example of a Json file:

{
"type": "com.arondor.viewer.client.api.document.DocumentPageLayout",
"documentId": {
"id": "doc1UUID"
},
"documentTitle": "title.pdf",
"mimeType": "application/pdf",
"pageDimensionsList": [
{
"width": 720.0,
"height": 405.0,
"rotation": 0,
"dpi": 0,
"pageLayers": null
},
{
"width": 720.0,
"height": 405.0,
"rotation": 0,
"dpi": 0,
"pageLayers": null
},
{
"width": 720.0,
"height": 405.0,
"rotation": 0,
"dpi": 0,
"pageLayers": null
}
]
}