На самом деле я смог сделать это (не лучшее качество, но у меня работает в данный момент):
- сначала преобразовав сообщение из яшмы в изображение,
- затем обрезаем изображение на кусочки бумаги формата принтера перед отправкой на принтер.
- и отправка изображения на принтер по одному
JasperPrint jp = the_jasper_print_to_be_printed; //
int i = 1; // Page Number to print
float zoom = 1f;
BufferedImage image = (BufferedImage) JasperPrintManager.printPageToImage(jp, i, zoom);
PrinterJob printJob = PrinterJob.getPrinterJob();
PageFormat pf = printJob.getPageFormat(null);
int paperWidth = Functions.StringToInt(pf.getImageableWidth());
int paperHeight = Functions.StringToInt(pf.getImageableHeight());
int x = 0, y = 0;
while (y < image.getHeight()) {
x = 0;
while (x < image.getWidth()) {
Rectangle rect = new Rectangle(x, y, paperWidth, paperHeight);
printImage(Functions.cropImage(image, rect), printJob);
x += paperWidth;
}
y += paperHeight;
}
Функция обрезки изображения
public static BufferedImage cropImage(BufferedImage src, Rectangle rect) {
int w = (rect.x + rect.width > src.getWidth()) ? src.getWidth() - rect.x : rect.width;
int h = (rect.y + rect.height > src.getHeight()) ? src.getHeight()- rect.y : rect.height;
BufferedImage dest = src.getSubimage(rect.x, rect.y, w, h);
return dest;
}
Функция отправки обрезанного изображения на принтер
private static void printImage(BufferedImage image, PrinterJob printJob) {
printJob.setPrintable(new Printable() {
public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
if (pageIndex != 0) {
return NO_SUCH_PAGE;
}
graphics.drawImage(image, 0, 0, image.getWidth(), image.getHeight(), null);
return PAGE_EXISTS;
}
});
try {
printJob.print();
} catch (PrinterException e1) {
e1.printStackTrace();
}
}