vote up 0 vote down star
2

as I googled for problem, somehow java printing API is crippled with limitation that all pictures sent to printer must be printed in 72dpi resolution. We are using jasper report to print documents and no matter how big barcode we draw, barcode reader won't scan it.. any similar experiences? How to solve this issue?

flag
We are using jasper reports as well in conjunction with barcode4j (instead of the included barbecue). We are not experiencing the problems you have. Maybe you could attach a scanned image of the printer output. Is the generated PDF crappy as well? – Tobias Schulte Jan 13 at 7:57
What is the exported format? – Vinegar Jan 13 at 7:58
I do not handle all the details right now; we are not generating PDF (although it is also posible) - from JasperViewer generated page is being sent to laser printer directly. We need 2D barcode (PDF-417), but our scanner would not scan normal EAN13 barcode as well as before mentioned. – asabo Jan 15 at 12:42

1 Answer

vote up 2 vote down check

You need to specify the printer resolution by means of attribute PrinterResolution. You should also know the source resolution so it is correctly converted such as:

PrinterResolution pr = new PrinterResolution(300, 300, PrinterResolution.DPI);
link|flag

Your Answer

Get an OpenID
or

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