We respect your privacy and want to protect your privacy.
In order to comply with EU General Data Protection Regulation (GDPR), our website will display a form asking for your consent to save non-essential cookie to your browser. If you do NOT accept, only essential cookies will be sent to your browser, such as TempData and Session cookies. Learn More.
MICR E13B 字體
關鍵字: MICR E-13B 字體, Bank Routing Number 字體, 支票字體, ANSI X9.27
如果您使用Visual Basic,请复制并粘贴下面的代码片段以进行进一步开发。
Private Sub Command1_Click()
Dim bcsocr As Object
Set bcsocr = CreateObject("BCSPreciseOCR.bcsocr.1")
bcsocr.SetMode (0) ;0 是扫描仪模式
bcsocr.setFont (0) ;0 MICR字體光学字符识别
Dim retval As String
retval = bcsocr.Recognize(Text1.Text)
Text2.Text = retval
End Sub