| 345 | } |
| 346 | |
| 347 | TESS_API void TESS_CALL TessBaseAPISetImage(TessBaseAPI* handle, const unsigned char* imagedata, int width, int height, |
| 348 | int bytes_per_pixel, int bytes_per_line) |
| 349 | { |
| 350 | handle->SetImage(imagedata, width, height, bytes_per_pixel, bytes_per_line); |
| 351 | } |
| 352 | |
| 353 | TESS_API void TESS_CALL TessBaseAPISetImage2(TessBaseAPI* handle, struct Pix* pix) |
| 354 | { |