Do any of the zxing team leaders have an opinion on whether it would
be preferable to coordinate with the zxing project to incorporate what
I've done into the main project, or would it be preferable to release
it on Google Code as a separate project first and let it mature? I'm
open either way.
Info on FOP extensions can be found here: http://xmlgraphics.apache.org/fop/dev/extensions.html
My extension was written specifically to allow the inclusion of a
QRCode barcode in a FOP-generated PDF document by including an XML
node as part of the XSL-FO which is provided to FOP as its source. An
example would look like this (ignore the bogus namespace currently in
use, which will be corrected later):
<fo:instream-foreign-object>
<qr:qrcode xmlns:qr="http://code.google.com/p/fop-qrcode"
length="20" cellsize="2" margin="4"
message="hello, world"
type="1" correction="L">
</qr:qrcode>
</fo:instream-foreign-object>
jpt