Creates a new document.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_document_create(
const LPSTR lpDataFileName,
HIG_REC_DOCUMENT* lpDocument
);
|
Name | Type | Description |
---|---|---|
lpDataFileName | const LPSTR | Specifies the intermediate data file. If this parameter is NULL or an empty string, then the file name will be generated automatically. |
lpDocument | HIG_REC_DOCUMENT* | Pointer to the document to be created. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0; HIGEAR higImage = 0; HIG_REC_IMAGE higRecImage = 0; HIG_REC_DOCUMENT hRecDocument = 0; ErrCount += IG_load_file("Image.tif", &higImage); ErrCount += IG_REC_image_import(higImage, &higRecImage); ErrCount += IG_REC_image_recognize(higRecImage); ErrCount += IG_REC_document_create(NULL, &hRecDocument); ErrCount += IG_REC_document_page_insert(hRecDocument, higRecImage, -1); ErrCount += IG_REC_document_save(hRecDocument, "recognition_data.bin"); //... ErrCount += IG_REC_document_close(hRecDocument); ErrCount += IG_image_delete(higImage); |