vectorgraphics2d
vectorgraphics2d copied to clipboard
Can multiple graphics be saved in a single PDF file?
Graphics2D vg2d_1 = new VectorGraphics2D();
// plotcontent
Graphics2D vg2d_2 = new VectorGraphics2D();
// plotcontent
Processor pdfProcessor = Processors.get("pdf");
// Can I write vg2d_1 and vg2d_2 in the same pdf file?
// ...
Like this, apicture, a page.

Unfortunately, there is no support for pages in the Graphics2D interface of Java. That’s why VectorGraphics2D also does not support this at the moment.
It’s on my list of planned features, but I don’t have any time frame yet. I will leave this issue open to track the progress.
@eseifert Thank you very much for your reply. I am looking forward to this feature.