jfxConverter-eps.jar
in addition to the jfxConverter.jar
. Note that the PowerPoint driver uses any version of the jlibeps
library. jlibeps
library exist: EPSDriverUtils
encapsulate the usage of the converter. for example: EPSDriverUtils epsUtils = new PPTDriverUtils(); epsUtils.convert(node, file);
EPSDriverUtils epsUtils = new EPSDriverUtils(); epsUtils.convert(node, title, file);
// create the Scene graph JFXInvoker invoker = JFXInvoker.getInstance(); invoker.invokeBlocking(new Runnable() { @Override public void run() { StackPane root = new StackPane(); Scene scene = new Scene(root, 300, 250); Stage stage = new Stage(); stage.setScene(scene); start(stage); Line line = new Line(0, 0, 200, 200); line.setStroke(Color.RED); root.getChildren().add(line); primaryStage.show(); } }); // perform the conversion EPSDriverUtils epsUtils = new EPSDriverUtils(); epsUtils.convert(node, file);
Copyright 2016-2018 Herve Girod. All Rights Reserved. Documentation and source under the BSD licence