I would like to create Design QR codes with Java.
Design QR codes may contain a logo in form of a graphic. Here's an example for such designed codes.

Is there a library that may create such codes? I only found normal QR code libraries.
|
feedback
|
|
As far as I know there is no special algorithm needed for embedding images into a QR code. Just take a standard QR code and embed your small image into it using standard image manipulation methods. It may still work if the embedded image was small enough because of the redundancy in the pixel structure - therefore after manipulation you should test the modified QR code. See also: http://contentdeveloper.com/2010/01/how-to-customize-qr-codes-with-your-brands-identity/ | |||
|
feedback
|
|
I just found a software that makes it possible to create such QR codes.
The software is developed in Go and available via http://code.google.com/p/rsc/source/browse/qr The author describes it en detail under http://research.swtch.com/qart | |||
|
feedback
|