Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.23
LEADTOOLS OCR C DLL Help

L_Doc2GetSupportedEngineFormats

Show in webframe

#include "ltdoc2.h"

L_LTDOC2_API L_INT EXT_FUNCTION L_Doc2GetSupportedEngineFormats(hDoc, ppFormats, pnFormatsCount)

L_HDOC2 hDoc;

/* handle to the OCR document */

DOC2_FORMATTYPE ** ppFormats;

/* output supported engine document formats list */

L_INT * pnFormatsCount;

/* number of the supported engine document formats */

Gets a list of all supported native engine document formats that you can save your recognition results to.

Parameter

Description

hDoc

Handle to the OCR document. This handle is obtained by calling the L_Doc2StartUp function.

ppFormats

Pointer to a DOC2_FORMATTYPE array to be updated with the list of the supported engine document formats.

pnFormatsCount

Pointer to an integer to be updated with the number of the supported engine document formats in ppFormats.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

You need to declare a pointer to DOC2_FORMATTYPE enumeration; pass this pointer address to this function. The engine will allocate the amount of the required memory, and will return the number of the supported engine document formats through the pnFormatsCount parameter. You also need to call the L_Doc2FreeEngineFormats function to free the allocated ppFormats parameter memory.

Required DLLs and Libraries

LTDOC2

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

L_Doc2GetEngineFormatFriendlyName, L_Doc2FreeEngineFormats, L_Doc2SaveResultsToFile, L_Doc2SetOutputFormatSettings

Topics:

Recognizing Document Pages, LEAD OMR Overview

Example

L_LTDOC2TEX_API  L_INT Doc2GetSupportedEngineFormatsExample(L_HDOC2 hDoc)
{
   DOC2_FORMATTYPE * pFormats = NULL;

  L_INT nFormatsCount = 0;
  L_INT nRet = L_Doc2GetSupportedEngineFormats(hDoc, &pFormats, &nFormatsCount);

  if(nRet == SUCCESS)
  {
     for(L_INT i = 0; i < nFormatsCount; i++)
     {
        L_TCHAR * pszFormatName = NULL;
        L_INT nLength = 0;

        nRet = L_Doc2GetEngineFormatFriendlyName(hDoc, pFormats[i], NULL, &nLength);
        if(nRet == SUCCESS)
        {
           pszFormatName = (L_TCHAR*)GlobalAllocPtr(GHND, nLength * sizeof(L_TCHAR));
           if(pszFormatName)
           {
              L_Doc2GetEngineFormatFriendlyName(hDoc, pFormats[i], pszFormatName, &nLength);
              MessageBox(NULL, pszFormatName, TEXT("Supported Native Engine Formats"), MB_OK);
          }
        }
     }
     L_Doc2FreeEngineFormats(hDoc, &pFormats);
   }
   return nRet;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.