Hi Glenn,
The complex scripts patch seems to have broken
examples/embedding/java/embedding/ExampleJava2D2PDF.java
It would be good if by default the examples are compiled to avoid this in
future. The fix is really easy:
@@ -66,7 +66,8 @@
throws ConfigurationException {
PDFDocumentGraphics2DConfigurator configurator = new
PDFDocumentGraphics2DConfigurator();
- configurator.configure(g2d, cfg);
+ boolean useComplexScriptFeatures = false;
+ configurator.configure(g2d, cfg, useComplexScriptFeatures);
}
Alex Giotis