* Returns the bounding rectangle of the current object at the given level in * coordinates of the original image. * See comment on coordinate system above. * Returns false if there is no such object at the current position. */
| 322 | * Returns false if there is no such object at the current position. |
| 323 | */ |
| 324 | bool PageIterator::BoundingBox(PageIteratorLevel level, |
| 325 | int* left, int* top, |
| 326 | int* right, int* bottom) const { |
| 327 | return BoundingBox(level, 0, left, top, right, bottom); |
| 328 | } |
| 329 | |
| 330 | bool PageIterator::BoundingBox(PageIteratorLevel level, const int padding, |
| 331 | int* left, int* top, |
no test coverage detected