Within a flowpane I have several splitpanes and hand over the splitpanes as node to the print function. The first splitpane is printed on the A4 side up, any more splitpane on the following pages by approximately half a page later. Note: the splitpane have a variable height. However, this occurs in effect even if all splitpanes are identical.
Setting the printer dialog explicit A4 portrait format, does not change. The Scene Resize does not help.
The calling sequence is as follows:
ContainerController.java
@FXML
private void handlePrint(ActionEvent event) {
try {
FXPrinter fxPrinter = new FXPrinter();
for (Object split : flowPane.getChildren()) {
Node node = null;
node = (Node) split;
fxPrinter.printFX(getPrimaryStage(), node);
}
} catch (IOException ex) {
Logger.getLogger(ContainerController.class.getName()).log(Level.SEVERE, null, ex);
}
}
public class FXPrinter { ...
public void printFX(Stage primaryStage, Node node) {
Printer printer = Printer.getDefaultPrinter();
PageLayout pageLayout = printer.createPageLayout(Paper.A4, PageOrientation.PORTRAIT, Printer.MarginType.DEFAULT);
double scaleX = pageLayout.getPrintableWidth() / node.getBoundsInParent().getWidth();
double scaleY = pageLayout.getPrintableHeight() / node.getBoundsInParent().getHeight();
PrinterJob job = PrinterJob.createPrinterJob(printer);
job.getJobSettings().setPageLayout(pageLayout);
if (scaleY < 1.0) {
// more then one page
if (scaleY < scaleX) {
// more than one page, we must take Y stretchfactor
node.getTransforms().add(new Scale(scaleX, scaleY));
} else {
// take X stretchfactor for Y for proportional both, X/Y stretching
node.getTransforms().add(new Scale(scaleX, scaleX));
}
} else {
// less then one page, set x proportional to y, equal stretchfactor
node.getTransforms().add(new Scale(scaleX, scaleX));
}
if (job != null) {
if (job.showPrintDialog(primaryStage.getOwner()) && job.printPage(pageLayout, node)) {
job.endJob();
}
}
}
Ever grateful for your Support Gerhard Laib
Elsewhere I found the following note:
This is my solution and it works perfect: