java中的QR码图像生成器(开源但无GPL)
我正在寻找java(J2SE)中的开源QR码图像生成器组件,但开源许可证不能是GPL许可证(需要包含在闭源项目中)。
顺便说一句,我无法从该项目访问网络,所以没有 Google API。
I'm seeking an open source QR codes image generator component in java (J2SE), but the open source licence mustn't be a GPL licence (needs to be included in a close source project).
BTW, i can't access the web from the project so no Google API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Mercer - 不,图书馆里也有一个编码器。 com.google.zxing.qrcode.encoder。 除了使用 Google Chart API 的示例 Web 应用程序之外,我们还提供了该内容
Mercer - no, there is an encoder in the library too. com.google.zxing.qrcode.encoder. We provide that in addition to an example web app using Google Chart APIs
ZXing 是一个开源、多格式的一维/二维条码图像处理库,在爪哇。
它是根据 Apache 许可证发布的,因此它允许使用源代码来开发专有软件以及自由和开源软件。
ZXing is is an open-source, multi-format 1D/2D barcode image processing library implemented in Java.
It is released under the The Apache License, so it allows use of the source code for the development of proprietary software as well as free and open source software.
MatrixToImageWriter 使用 BitMatrix,而不是 QRCode.getMatrix 返回的 ByteMatrix。 通过查看 android 源代码,我发现了以下概念验证解决方案:
顺便说一句,在 API 中强加 Hashtable 并不干净。 请使用地图。 无论如何,没有多少人仍然使用 Hashtable,您几乎应该始终使用 HashMap(除了少数用例)。
MatrixToImageWriter uses BitMatrix, not ByteMatrix as returned by QRCode.getMatrix. by looking at android sourcecode, I found the following proof of concept solution:
btw imposing Hashtable in API is not clean. please use Map. not many people still use Hashtable anyway, you should almost always use HashMap instead (except a few use cases).