问题标签 [micr]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
8319 浏览

javascript - Javascript原型扩展方法

我有一个原型模型,我需要在原型中包含以下扩展方法:

示例:[JS]

在原型模型中,如何使用扩展方法或任何其他方式在 JS 原型模型中创建扩展方法。

0 投票
2 回答
1602 浏览

html - 如何在 HTML 页面中使用 MICR / E13-B 字体

我想显示我的支票号码,例如“MICR / E13-B Fonts”。我如何使用 css 显示它。

谢谢拉胡尔

0 投票
4 回答
5071 浏览

c# - 如何解析 MICR 行数据?

我有一个数字支票扫描仪,它能够从支票中捕获 MICR 行。它将以原始格式作为字符串返回 MICR 行,并使用分隔符分隔帐号、路由号码和支票号码。但是,每家银行都以不同的方式格式化此 MICR 行,因此没有标准的方法来解析此数据。

我尝试过的一些公司是 Inlite Research Inc 和 Accusoft Pegasus。Inlite Research 的 API 适用于某些银行,但无法正确读取美国银行的支票。我仍在测试来自 Accusoft 的 API。

我要问的是,是否有人知道可以准确解析不同组件的 MICR 行的 API。如果我遇到 API 无法正确处理的新检查,是否有 API 可以让我添加检查格式的新定义?或者,如果有人知道如何或已经编写了一个例程来解析 MICR 行。

我会很感激我能得到的任何帮助。谢谢你。

0 投票
2 回答
1632 浏览

php - 使用 micr 字体打印到 php 脚本

我有人问是否可以创建一个可以从支票打印软件(Quicken-esque)打印的脚本,并使用 MICR 编码创建支票。我告诉他们这是不可能的,但我想我应该先检查一下。

我看了看,但没有看到任何东西(除了软件)。看起来 micr 打印有非常严格的标准,听起来 php 不太可能处理它。

有什么想法吗?


我偶然发现了一种可能有效的免费 micr 字体。http://www.sandeen.net/GnuMICR/可以安装在计算机上,然后渲染可以打印的 micr 字体。

我想定位也很重要......也许这可以用javascript/jquery来完成?

0 投票
0 回答
1775 浏览

c# - C# .Net4 检查阅读器 MICR 号码解析

我已经对此进行了搜索,但我认为我的问题比那里的问题更具体一些。

我打算创建一个可靠地读取 MICR 编号并共享源的类,如果我可以创建一个可靠的类。

无论如何,我查看了 .Net POS MICR,据我所知,它不会采用您在 .Net 之外扫描的值。

我的场景:

我得到了 MICR 号码。这里有几个例子(当然改变了):

T012345609T 2123456U $0000044336$

T123456080T1010123456535U01183

U014749U T062000080T2000697098326U

U005195U T099884411T426549872265U

我需要在 C# 中可靠地解析出这些信息并提供以下信息(如果有):

  1. 支票号码
  2. 路由号码
  3. 帐号
  4. 支票金额

我已经为它编写了代码,但我很快发现可以通过不同的方式将 MICR 号码打印在支票上,如上所示。

有没有人有任何建议,代码示例,甚至是另一个已经完成的帖子/链接?如果已经完成,我不想重新发明轮子。

谢谢!

0 投票
1 回答
700 浏览

c# - Unable to view MICR font in print preview

I have written a code to print a cheque using MICR font, every thing works fine but when coming to print preview I am getting normal text but while printing the document I am getting the required in MICR font. How can I show MICR font in print preview

This is my code

0 投票
3 回答
485 浏览

windows-7 - MICR Check Printing not working on Windows-7

I maintain a PowerBuilder Classic 12.5 application which has functionality to print checks on a Source Technologies MICR printer. The application has been running fine in a Windows XP environment. We are trying to move to a Windows-7 operating system and the check printing no longer works.

Here is the issue. PowerBuilder issues a PrintOpen followed by several Print commands to send command strings to the printer to unlock MICR mode and various secure fonts:

This works fine on XP, and if you redirect the printer to "print to file", you can see the command strings right there in the file.

In Windows-7, the printer does not recognize the command strings, and in fact, just prints the commands on the check stock. If you do the same "print to file", you can see the commands in there, but each character in the command string is separated by other characters.

The following is a sample taken from the "print to" file, and you can see the string '&%SMCPFFFF$' by looking at each character that precedes an asterisk (*).

This would seem to be a print driver issue, and in fact, Source Technologies now provides a "Universal Print Driver" which we have been told to use. Our PC support person was able to get the check printing working temporarily by re-installing the old print driver that we used on Windows XP, but as soon as the printer is turned off and on again, it resets to the new universal driver.

I tried using PrintDefineFont and PrintSetFont, to set the font to Courier Regular 8pt (which is what the Tech Support guy at Source Technologies told us we needed), but that didn't help:

Can anyone help me with this issue? Or suggest where I might get help.
Thanks.

0 投票
2 回答
4240 浏览

android - 如何在 Android 中识别 MICR 代码

我正在尝试从文档中找到对 MICR 代码进行 OCR 的方法。为此,我使用了Tesseract库,使用它我在识别文本方面取得了成功,但是当涉及到 MICR 时,它无法识别。

这是我想阅读的示例 MICR 图像:

在此处输入图像描述

这是一种MICR E-13B字体(更多信息)。

那么是否有任何开源库可以识别 Android 的 MICR 代码?我找到了提供此功能的Leadtools SDK,但它是付费的。

0 投票
1 回答
906 浏览

c# - 如何使用 TWAIN 驱动程序从扫描仪获取 MICR 字符串

我正在编写一些 c# 代码来从检查中提取 MICR 字符串。

我的扫描仪是支持 MICR 阅读器的 Cannon DR-850M。

它可以在自己的扫描程序上读取 MICR 字符串。但我需要使用 TWAIN 自己制作。

我可以使用 TWAIN 驱动程序扫描程序中的图像。但是,我找不到如何获取 MICR 字符串。

TWAIN 中是否有访问扫描仪的 MICR 阅读器的功能?还是别的什么?


我发现 MICR 数据位于“扩展图像信息”中。谢谢回答。

我还有一点问题。

这是我的代码。

我从 TWAIN 获得了这些值。

但不知道exinf.Info.Item是什么值

在示例应用程序中,它显示正确的 MICR 字符。但是我自己的返回值很奇怪。

我能得到一些帮助吗?

0 投票
1 回答
78 浏览

javascript - c中运算符的赋值和优先级

有人解释一下,请不要用荒谬的代码告诉我