在 C# 中使用 IKVM 进行 zxing
我使用 IKVM 将 jar 文件转换为 .net dll 文件。现在我试图在我的 .net 应用程序中使用它,但似乎 qrcodereader.decode 需要 BinaryBitmap,这进一步需要亮度作为参数。请在这种情况下指导我,因为我找不到实现抽象类的正确类。
I converted the jar file into .net dll file using IKVM. Now i am trying to consume it in my .net app, but it seems that the qrcodereader.decode requires BinaryBitmap which further requires Luminance as parameter. Please guide me in this situation since i couldn't find the right classes that implements the abstract classes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
亮度源是特定于平台的。您可以在 android、java2se 和 iphone 目录中找到示例。我不知道 csharp 目录中是否有任何亮度源,但该代码并未主动维护,因此即使有,也可能需要进行清理适应(更不用说我不知道它是否与 IKVM 兼容)。
Luminance sources are platform specific. You can find examples in the android, java2se, and iphone directories. I don't know if there are any luminance sources in the csharp directory but that code is not actively maintained so even if there is, it'll likely take cleanup adaptation (not to mention I have no idea if it's compatible with IKVM).