2

I've been reading examples for printing in Java for hours, but I haven't found the right site I guess. My problem is, that I want to print 5 barcodes (created with barbeque project) on 1 page in a form like that: The first 4 barcodes in font size 16
|||||||||||||||||||||
00000001
|||||||||||||||||||||
00000002
|||||||||||||||||||||
00000003
|||||||||||||||||||||
00000004
The last Barcode in font size 24
||||||||||||||||
ZZ0064

Does anyone know how to do that?

Bart
  • 19,692
  • 7
  • 68
  • 77
user882928
  • 21
  • 2

1 Answers1

1

Prepare barcode images via Graphics2D and Font classes.

After that use this tutorial to print the result image.