OCR Xpress for Linux
OCRX_recognize_to_file

Recognizes an image and outputs the result to file.

If the output file already exists and was created by OCR Xpress for Linux, it will be appended. Otherwise, it will be created or overwritten.

Arguments:

Name  Type  Description
params  const OCRX_RecognitionParameters  Parameters with which to perform recognition.
dib  const intptr_t  Image on which to perform recognition.
format  const OCRX_FileFormat  File format to output.
mode const OCRX_FileMode File mode for the output.
filePath  const char*  Output file path.

Return Value:

OCRX_Status – Specifies whether an error occurred and, if so, specifies which error and any relevant details.

Example:

Copy Code
#include “ocrxpress.h”

intptr_t dib = 0;
OCRX_RecognitionParameters params = OCRX_DefaultRecognitionParameters;

OCRX_set_solution_name(“solutionName”);
OCRX_set_solution_key(0x00000001, 0x00000002, 0x00000003, 0x00000004);
OCRX_set_oem_license_key(“oemLicenseKey”);

OCRX_load_file(“/home/user/image.bmp”, &dib);
OCRX_recognize_to_file(params, dib, OCRX_FileFormat_PDF, OCRX_FileMode_Overwrite, “/home/user/image.pdf”);
OCRX_free_dib(dib);

 

 

 


©2016. Accusoft Corporation. All Rights Reserved.

Send Feedback