Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.6.9
|
Leadtools.Forms.Ocr Assembly > Leadtools.Forms.Ocr Namespace > IOcrDocumentManager Interface : SetFontName Method |
void SetFontName( string languageName, OcrDocumentFontType fontType, string fontName )
'Declaration
Sub SetFontName( _ ByVal languageName As String, _ ByVal fontType As OcrDocumentFontType, _ ByVal fontName As String _ )
'Usage
Dim instance As IOcrDocumentManager Dim languageName As String Dim fontType As OcrDocumentFontType Dim fontName As String instance.SetFontName(languageName, fontType, fontName)
void SetFontName( string languageName, OcrDocumentFontType fontType, string fontName )
- (void)setFontName:(NSString *)fontName forLanguage:(LTOcrLanguage)language fontType:(LTOcrDocumentFontType)fontType error:(NSError **)error
public void setFontName(String languageName, OcrDocumentFontType fontType, String fontName)
function Leadtools.Forms.Ocr.IOcrDocumentManager.SetFontName( languageName , fontType , fontName )
void SetFontName( String^ languageName, OcrDocumentFontType fontType, String^ fontName )
You can also use GetFontNames and SetFontNames to get or set the font names using an array.
Use GetFontName and SetFontName to get/set the fonts used in the final recognized document (PDF, DOC, HTML, etc). The fonts will not be used when the final document format is text.
The OCR engine uses six different fonts when creating the final output document as follows: description:
OcrDocumentFontType | Description |
---|---|
OcrDocumentFontType.ProportionalSerif | The font used with proportional serif characters |
OcrDocumentFontType.ProportionalSansSerif | The font used with proportional sans-serif characters |
OcrDocumentFontType.FixedSerif | The font used with monospaced serif characters |
OcrDocumentFontType.FixedSansSerif | The font used with monospaced sans-serif characters |
OcrDocumentFontType.MICR | The font used with MICR (check font) characters |
The OcrCharacter.FontStyle member of each character returned in IOcrPage.GetRecognizedCharacters determines which font to use with the character. If the zone is ICR or MICR (the OcrZone.ZoneType member is OcrZoneType.Icr or OcrZoneType.Micrthen the character will use the ICR or MICR fonts accordingly.
The OCR engine keeps a list of fonts for some languages, for example all the Latin languages currently use the same font. So passing languageName equals to "en" for English or "de" for German will change the default Latin fonts used in the final document. This is the equivalent of passing null (Nothing in Visual Basic).
If the OCR engine supports Asian languages, then each language will have its own font sets and you can get/set these fonts individually. Currently, the LEADTOOLS OCR toolkits supports individual fonts for Latin (null), Japanese (ja), Korean (ko), Chinese (zh-Hans and zh-Hant) and Korean (ko). The following table lists the default fonts used for each language:
Language | Fonts | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Latin (all other languages) including languageName equals to null |
|
||||||||||||||
Japanese (languageName equals to "ja") |
|
||||||||||||||
Chinese (languageName equals to "zh-Hans" or "zh-Hant") |
|
||||||||||||||
Korean (languageName equals to "ko") |
|
Note that changing the fonts is not recommended in most cases, the character position and size is calculated based on the default fonts even if the user changes the fonts before the recognition process. After the changing the fonts, it might be required to use IOcrPage.GetRecognizedCharacters and IOcrPage.SetRecognizedCharacters to further change the character position and font size to create the final output document.
For an example, refer to GetFontName.