Container to carry the page orientation and positional information.
| name | data type | constraints | description |
|---|---|---|---|
| rotationAngle | number | required float | Rotation angle of the page (between 0 and 360 degress) . |
| rotationOrigin | number | required int | Origin for the rotation (0 = no rotation, 1 = upper left, 2 = upper right, 3 = lower right, 4 = lower left, 5 = center). |
| boundingBox | BoundingBox | Bounding box of the page. |
Example
{
"rotationAngle" : 12345.0,
"rotationOrigin" : 12345,
"boundingBox" : {
"left" : 12345,
"top" : 12345,
"right" : 12345,
"bottom" : 12345
}
}