Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
FOP Missing Font Error for PDF
Why I am getting the "Font Calibri,normal,400 not found. Substituting with any,normal,400" error with FOP?
✍: FYIcenter.com
FOP has built-in definitions only for generic fonts: serif, sans-serif, monospace,
and Base-14 fonts: Helvetica, Times, Courier, Symbol, ZapfDingbats.
If you are using a font that has not built-in definition,
you will get the "Font X not found. Substituting with any" error.
For example, "Calibri" is a popular font, but it has not built-in definition in FOP. So if you use font "Calibri" in your FO file as show below, FOP will give you an error:
<?xml version="1.0" encoding="utf-8"?> <!-- missing-font.fo Copyright (c) 2018 FYIcenter.com --> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> <fo:layout-master-set> <fo:simple-page-master master-name="myPage"> <fo:region-body margin="1in"/> </fo:simple-page-master> </fo:layout-master-set> <fo:page-sequence master-reference="myPage"> <fo:flow flow-name="xsl-region-body"> <fo:block>Default: Welcome to jar.FYIcenter.com!</fo:block> <fo:block font-family="Calibri">Calibri: Welcome to jar.FYIcenter.com!</fo:block> <fo:block font-family="Gothic">Gothic: Welcome to jar.FYIcenter.com!</fo:block> </fo:flow> </fo:page-sequence> </fo:root>
Try to generate the PDF output from this FO file:
\local\fop-2.2\fop>fop \fyicenter\missing-font.fo \temp\missing-font.pdf org.apache.fop.events.LoggingEventListener processEvent WARNING: Font "Calibri,normal,400" not found. Substituting with "any,normal,400". org.apache.fop.events.LoggingEventListener processEvent WARNING: Font "Gothic,normal,400" not found. Substituting with "any,normal,400". org.apache.fop.events.LoggingEventListener processEvent INFO: Rendered page #1.
The 'WARNING: Font "Calibri,normal,400" not found. Substituting with "any,normal,400"' is actually an error. FOP will replace "Calibri" font with the placeholder "any" font.
Open the PDF output file, missing-font.pdf in Acrobat Reader and
check the font properties, you will see "any" font is mapped to "Time Roman":
This tutorial is valid in FOP 2.2, 2.1, and 2.0.
⇒ FOP TTFReader - Build Font Definitions
⇐ FOP Font Missing Glyph Error for PDF
2018-04-21, 2313👍, 0💬
Popular Posts:
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...
What Is ojdbc14.jar for Oracle 10g R2? ojdbc14.jar for Oracle 10g R2 is the JAR files of ojdbc.jar, ...
Apache Ant Source Code Files are inside the Apache Ant source package file like apache-ant-1.10.10-s...
What is the sax\Counter.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 inst...
What Is mail.jar of JavaMail 1.4.2? I got the JAR file from javamail-1.4.2.zip. mail.jar in javamail...