All pages in the PDF Document.
| name | data type | description |
|---|---|---|
| pageCount | number | The number of pages in the document. |
| pages | array of PageModel | A list of all pages in the document. |
| link | LinkModel | Link to the pages. |
| content | LinkModel | Link to the pages content. |
| text | LinkModel | Link to the pages text. |
Example
{
"pageCount" : 12345,
"pages" : [ {
"width" : 12345.0,
"height" : 12345.0,
"index" : 12345,
"annotationCount" : 12345,
"link" : {
"rel" : "...",
"href" : "..."
},
"rotation" : 12345,
"mediaBox" : {
"x" : 12345.0,
"y" : 12345.0,
"width" : 12345.0,
"height" : 12345.0
},
"cropBox" : {
"x" : 12345.0,
"y" : 12345.0,
"width" : 12345.0,
"height" : 12345.0
}
}, {
"width" : 12345.0,
"height" : 12345.0,
"index" : 12345,
"annotationCount" : 12345,
"link" : {
"rel" : "...",
"href" : "..."
},
"rotation" : 12345,
"mediaBox" : {
"x" : 12345.0,
"y" : 12345.0,
"width" : 12345.0,
"height" : 12345.0
},
"cropBox" : {
"x" : 12345.0,
"y" : 12345.0,
"width" : 12345.0,
"height" : 12345.0
}
} ],
"link" : {
"rel" : "...",
"href" : "..."
},
"content" : {
"rel" : "...",
"href" : "..."
},
"text" : {
"rel" : "...",
"href" : "..."
}
}