有没有使用 PHP 开发 Cardscanning(CSSN) 的示例代码?
我想使用 CSSN 开发一个用于卡片扫描的模块。他们提供了其他语言的示例代码,例如C#、Delphi等(PHP除外)。 有没有使用 PHP 与此 CSSN 设备扫描文档的示例代码?
我们是否可以使用 PHP 为该扫描仪开发应用程序?
I want to develop a module for card scanning using CSSN.They gave the sample code for another languages like C#,Delphi etc.(except PHP).
Is there any sample code for scanning the document using PHP with this CSSN device?
Whether we can develop application for this scanner using PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看他们的网站,基于他们使用 ActiveX 控件的事实,我感觉你永远无法在不使用 Microsoft 运行时的语言上运行它。即使你能够以某种方式让它发挥作用,我怀疑你会得到他们的大力支持。
相反,我建议用他们支持的语言编写一个程序,该程序可以与您的 PHP 应用程序对话。当 SDK 将事件发送到您的中间应用程序时,它可以将它们发送到您的 PHP 程序,并且 PHP 程序可以通过中间应用程序向 SDK 发送命令。
Looking at their website, and based on the fact that they're using ActiveX controls, I get the feeling you'll never get this working on a language that doesn't use Microsoft's runtime. Even if you were able to somehow get it working, I doubt you would get much support from them on it.
I would recommend, instead, writing a program in a language they support that can in turn talk to your PHP application. As the SDK sends events to your intermediate app it can send them on to your PHP program, and the PHP program can send commands to the SDK through the intermediate app.