Skip to content
Advertisement

Apache FOP – is there a way to embed font programmatically?

When creating a PDF using Apache FOP it is possible to embed a font with configuration file. The problem emerges when the app is a web application and it is necessary to embed a font that is inside WAR file (so treated as resource).

It is not acceptable to use particular container’s folder structure to determine where exactly the war is located (when in configuration xml file we set tag to ./, it is set to the base folder of running container like C:Tomcatbin).

So the question is: Do anyone know the way to embed a font programatically?

Advertisement

Answer

After going through lots of FOP java code I managed to get it to work.

Descriptive version

Main idea is to force FOP to use custom PDFRendererConfigurator that will return desired font list when getCustomFontCollection() is executed.

In order to do it we need to create custom PDFDocumentHandlerMaker that will return custom PDFDocumentHandler (form method makeIFDocumentHandler()) which will in turn return our custom PDFRendererConfigurator (from getConfigurator() method) that, as above, will set out custom font list.

Then just add custom PDFDocumentHandlerMaker to RendererFactory and it will work.

FopFactory > RendererFactory > PDFDocumentHandlerMaker > PDFDocumentHandler > PDFRendererConfigurator

Full code

FopTest.java

JavaScript

CustomPDFDocumentHandlerMaker.java

JavaScript

CustomPDFDocumentHandler.java

JavaScript

CustomPDFRendererConfigurator.java

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement