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.

link|improve this question
feedback

3 Answers

up vote 22 down vote accepted

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

link|improve this answer
ok thank you! i just have to create an Image using the qrCode.getMatrix().getArray(); – oneeyejack Aug 19 '09 at 16:02
7  
In case anyone else is doing this, heres the basic idea. Use Encoder.encode() to 'fill-in' the details of a newly instantiated QRCode. Then get the byte[][] from QRCode.getMatrix().getArray() as suggested above. Each line of bytes seems to be a row of pixels for the QRCode, with each byte being zero or one. At this point you could just paint the pixels to a BufferedImage or make a Raster out of it or something to turn it into an AWT image. – CarlG Nov 30 '10 at 18:51
9  
... or use the provided class MatrixToImageWriter to do all this for you ! – Sean Owen Dec 1 '10 at 9:26
feedback

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.

link|improve this answer
1  
Doesn't generate QR Codes. It only scans them. – Mercer Traieste Jul 16 '09 at 13:08
2  
In their web app example of qr generator they are using code.google.com/apis/chart/types.html#qrcodes to generate the qr code. – Mercer Traieste Jul 16 '09 at 13:09
I can't access the web from the project so, no google API or web service. – oneeyejack Jul 16 '09 at 13:20
They do, however, have an almost finished implementation of the qr code generator - not the qr image generator. So you could give this project a try. – Mercer Traieste Jul 16 '09 at 13:41
5  
No the project has both a GWT front-end for QR Code generation that uses the Google Chart Server for the actual image generation, and also a native Java QR Code generator that can be embedded. – Sean Owen Aug 20 '09 at 17:01
show 1 more comment
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.