| 667 | } |
| 668 | |
| 669 | TESS_API BOOL TESS_CALL TessPageIteratorBoundingBox(const TessPageIterator* handle, TessPageIteratorLevel level, |
| 670 | int* left, int* top, int* right, int* bottom) |
| 671 | { |
| 672 | return handle->BoundingBox(level, left, top, right, bottom) ? TRUE : FALSE; |
| 673 | } |
| 674 | |
| 675 | TESS_API TessPolyBlockType TESS_CALL TessPageIteratorBlockType(const TessPageIterator* handle) |
| 676 | { |
nothing calls this directly
no test coverage detected