以下打印我的条形码(使用BBQ)
try{
Barcode b = BarcodeFactory.createCode128(info);
PrinterJob job = PrinterJob.getPrinterJob();
job.setPrintable(b);
if (job.printDialog()){}
job.print();
}
}catch (Exception e){
e.printStackTrace();
}
我现在想在打印区域中设置位置。我尝试了以下不同的数字,但输出是相同的。
Point p = new Point(10, 10);
b.setLocation(p);
我错过了什么?