RecAPI
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties Modules Pages

MOR multi-lingual omnifont recognition module. More...

Functions

RECERR RECAPIKRN kRecSetMorFaxed (int sid, INTBOOL bFaxed)
 Setting fax image mode for MOR.
 
RECERR RECAPIKRN kRecGetMorFaxed (int sid, INTBOOL *pbFaxed)
 Getting fax image mode for MOR.
 

Detailed Description

MOR multi-lingual omnifont recognition module.

See the general description.

Function Documentation

◆ kRecGetMorFaxed()

RECERR RECAPIKRN kRecGetMorFaxed ( int sid,
INTBOOL * pbFaxed )

Getting fax image mode for MOR.

The kRecGetMorFaxed function inquires the current setting of the Fax image mode of module RM_OMNIFONT_MOR. If the inquired status is TRUE, the normal Fax image mode is switched on.

Parameters
[in]sidSettings Collection ID.
[out]pbFaxedPointer of a Boolean variable to hold the current Fax image mode setting.
Return values
RECERR
Note
See kRecSetMorFaxed for more information.
The specification of this function in C# is:
RECERR kRecGetMorFaxed(int sid, out bool bFaxed);
RECERR
Error codes.
Definition RECERR_doc.h:19
RECERR RECAPIKRN kRecGetMorFaxed(int sid, INTBOOL *pbFaxed)
Getting fax image mode for MOR.
The specification of this function in Java is:
int kRecGetMorFaxed(int sid, int[] pbFaxed)
The specification of this function in Python is:
def kRecGetMorFaxed(sid: int) -> Tuple[int, bool]

◆ kRecSetMorFaxed()

RECERR RECAPIKRN kRecSetMorFaxed ( int sid,
INTBOOL bFaxed )

Setting fax image mode for MOR.

The kRecSetMorFaxed function switches on or off the Fax image mode for the multi-lingual RM_OMNIFONT_MOR omnifont recognition module.

Parameters
[in]sidSettings Collection ID.
[in]bFaxedFax image mode to be set.
Return values
RECERR
Note
Turn this setting on (bFaxed=TRUE) if the image file to be loaded is a fax message transmitted in "Standard" (or "Draft") mode with about 200 x 100 resolution. Its use is not recommended for reading fax card image files transmitted in "Fine" mode (about 200 x 200 dpi resolution).
The specification of this function in C# is:
RECERR kRecSetMorFaxed(int sid, bool bFaxed);
RECERR RECAPIKRN kRecSetMorFaxed(int sid, INTBOOL bFaxed)
Setting fax image mode for MOR.
The specification of this function in Java is:
int kRecSetMorFaxed(int sid, int bFaxed)
The specification of this function in Python is:
def kRecSetMorFaxed(sid: int, bFaxed: bool) -> int