java中的QR码图像生成器(开源但无GPL)

发布于 2024-07-27 14:56:27 字数 110 浏览 4 评论 0原文

我正在寻找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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

生活了然无味 2024-08-03 14:56:27

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

來不及說愛妳 2024-08-03 14:56:27

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.

把人绕傻吧 2024-08-03 14:56:27

MatrixToImageWriter 使用 BitMatrix,而不是 QRCode.getMatrix 返回的 ByteMatrix。 通过查看 android 源代码,我发现了以下概念验证解决方案:

    try {
        MultiFormatWriter writer = new MultiFormatWriter();    
        Hashtable hints = new Hashtable();
        hints.put( EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.Q );            
        MatrixToImageWriter.writeToFile( writer.encode( "hello world", BarcodeFormat.QR_CODE, 800, 800, hints ),
                                         "png", new File( "/tmp/qrcode.png" ) );
    } catch ( Exception e ) {
        System.out.println( "failure: " + e );
    }

顺便说一句,在 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:

    try {
        MultiFormatWriter writer = new MultiFormatWriter();    
        Hashtable hints = new Hashtable();
        hints.put( EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.Q );            
        MatrixToImageWriter.writeToFile( writer.encode( "hello world", BarcodeFormat.QR_CODE, 800, 800, hints ),
                                         "png", new File( "/tmp/qrcode.png" ) );
    } catch ( Exception e ) {
        System.out.println( "failure: " + e );
    }

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文