Page Properties | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
|
The layout of the document describes the textual content of a document with positional information, based on the processed document.
...
Header | Value |
---|---|
|
|
Code Block | ||
---|---|---|
| ||
//retrie a layout of the document
GET /documents/{id}/layout
Example
curl -H 'Authorization: BEARER <token>'
-X GET -H 'Accept: application/vnd.gini.v1+json'
-i https://pay-api.gini.net/documents/c292af40-d06a-11e2-9a2f-000000000000/layout |
Response
Headers
Status Code | Description |
---|---|
200 (OK) | Operation is successful. |
...
Key | Type | Description |
---|---|---|
|
| Height of the word. |
|
| Width of the word. |
|
| Distance of the word from the left edge of the page. |
|
| Distance of the word from the upper edge of the page. |
|
| Font size of the word in points. |
|
| Name of the font family of the word. |
|
| Indicates bold font style. |
|
| Text of word. |
...
Key | Type | Description |
---|---|---|
|
| Height of the region of interest. |
|
| Width of the region of interest. |
|
| Distance of the region from the left edge of the page. |
|
| Distance of the region from the upper edge of the page. |
|
| Type of the region of interest, e.g. for example, RemittanceSlip. |
Errors
Status Code | Description |
---|---|
404 (Not Found) | The requested layout is invalid. |
Code Block | ||
---|---|---|
| ||
//layout example { "pages": [ { "number": 1, "sizeX": 595.3, "sizeY": 841.9, "textZones": [ { "paragraphs": [ { "l": 54.0, "t": 158.76, "w": 190.1, "h": 36.55000000000001, "lines": [ { "l": 54.0, "t": 158.76, "w": 190.1, "h": 10.810000000000002, "wds": [ { "l": 54.0, "t": 158.76, "w": 18.129999999999995, "h": 9.900000000000006, "fontSize": 9.9, "fontFamily": "Arial-BoldMT", "bold":false, "text": "Ihre" }, { "l": 74.86, "t": 158.76, "w": 83.91000000000001, "h": 9.900000000000006, "fontSize": 9.9, "fontFamily": "Arial-BoldMT", "bold":false, "text": "Vorgangsnummer" }, { "l": 158.76, "t": 158.76, "w": 3.3000000000000114, "h": 9.900000000000006, "fontSize": 9.9, "fontFamily": "Arial-BoldMT", "bold":false, "text": ":" }, [...] ] }, [...] ] } ] } ], "regions": [ { "l": 20.0, "t": 240.1, "w": 190.0, "h": 150.3, "type": "RemittanceSlip" }, [...] ] }, [...] ] } |