LEADTOOLS OCR C DLL Help > Function References > OCR Professional > L_Doc2SetDocumentWriterOptions |
#include "ltdoc2.h"
L_LTDOC2_API L_INT EXT_FUNCTION L_Doc2SetDocumentWriterOptions(hDoc, pOptions, uStructSize)
L_HDOC2 hDoc; |
/* handle to the OCR document */ |
L_VOID * pOptions; |
/* pointer to a document format structure */ |
L_UINT uStructSize; |
/* sizeof the document format structure */ |
Sets options for the specified document writer format.
Parameter |
Description |
|
hDoc |
Handle to the OCR document |
|
pOptions |
Void pointer to a document format structure to be set. Possible values are: |
|
|
Format Constant |
Document format structure |
|
DOCUMENTFORMAT_LTD |
|
|
DOCUMENTFORMAT_EMF |
|
|
DOCUMENTFORMAT_DOC |
|
|
DOCUMENTFORMAT_PDF |
|
|
DOCUMENTFORMAT_RTF |
|
|
DOCUMENTFORMAT_TXT |
|
|
DOCUMENTFORMAT_HTM |
|
|
DOCUMENTFORMAT_XPS |
|
uStructSize |
Size of the document format structure |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
Sets the options for the format the document writer is to use to write results.
To specify a document writer format, fill the DocFormat member of the RESULTOPTIONS2 structure and pass it to the L_Doc2SetRecognitionResultOptions function.
To get the options for a specific document writer format, call the L_Doc2GetDocumentWriterOptions function.
After setting the document format and options, call L_Doc2SaveResultsToFile or L_Doc2SaveResultsToFile2 to save the results.
Required DLLs and Libraries
LTDOC2 |
See Also
Functions: |
L_Doc2GetRecognitionResultOptions, L_Doc2SetRecognitionResultOptions, L_Doc2SaveResultsToFile, L_Doc2SaveResultsToFile2, L_Doc2GetDocumentWriterOptions |
Topics: |
|
|
Example
For an example, refer to L_Doc2SaveResultsToFile2.