I've got a printer which doesn't support the feature I need.
The printer prints A2
paper size. I would like to print two A3
size pages, that would fit on a single A2
paper, but my printer doesn't support this.
I already called the support of the company, but they told me I need to buy a newer one because my printer doesn't support this function. (Its very funny because an even older version of that printer does support this function).
So I tried to use the Apache PDFBox, where I can load my pdf file like this:
File pdfFile = new File(path);
PDDocument pdfDocument = load(pdfFile);
The file I loaded is size A3
. I think it would be enough if I could get a new PDDocument with A2
paper size. Then put my loaded pdfFile
twice in an A2
paper.
All in all, I need the file I loaded there two times on one page. I just don't know how to do that.
Best regards.