I want put a barcode in my page and can preview it. The barcode generator is google.zxing and my reporting tool is iReport.
But i dont know, how to configure Image Expression and Expression Class of an image in iReport.
|
I want put a barcode in my page and can preview it. The barcode generator is google.zxing and my reporting tool is iReport. But i dont know, how to configure
| |||||||||||
feedback
|
|
The two key ideas are first to write a bit of Java code to create the relevant image and then to design the report to reference this code appropriately. Perhaps the simplest way to generate the image is in a scriptlet like this:
That's full of hard-coded ugliness, but the key ideas are all shown. Then you need to define the report like this:
The result is a happy happy QR-code in your generated JasperReport:
I recall a sample that I have seen which does things much more cleanly. It actually included a nice plug-in so you could easily install this functionality into iReport with minimal effort. If I can track that down, then I'll update this post. But until then this at least covers all of the critical points. | |||
|
feedback
|
|
The image expression should return any subclass of In the case of ZXing I don't know the method to use, but I can tell what I use as ImageExpression using the Barbecue library.
The --Edited: To encode an Image in zxing you should use The following code will encode a QRCode into a BufferedImage which you can use in the Image Expression field:
| ||||
|
feedback
|
|
This is what you need to do: | |||
|
feedback
|
|
The image expresion with the complete path. com.google.zxing.client.j2se.MatrixToImageWriter.toBufferedImage(new com.google.zxing.qrcode.QRCodeWriter().encode("your value",com.google.zxing.BarcodeFormat.QR_CODE,300 /Width/,150 /Height/)) And the expression Class java.awt.Image | |||
|
feedback
|