Hello!
I have created CODE_128 Barcode using Zxing in Oracle.
This code works well. but I want to generate this Barcode with starting Point.
I'm trying to generate a report label that has multiple barcodes like this and its output is this:
But I want this barcode to be printed as the same length and starting point as this label.
CODE :
_________
private BitMatrix createMatrix() throws WriterException
{
Map<EncodeHintType, Object> hintMap = new HashMap<EncodeHintType, Object>();
hintMap.put(EncodeHintType. CODE128_COMPACT,true );
BitMatrix matrix = new MultiFormatWriter().encode(this.text, BarcodeFormat.CODE_128, this.width, this.height, hintMap);
return matrix;
}
_________________
Please suggest the same!