diff options
author | Jeremias Maerki <jeremias@apache.org> | 2006-02-23 10:29:08 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2006-02-23 10:29:08 +0000 |
commit | cee970d0e3ee2559c8261b2e101b828ca12ab696 (patch) | |
tree | 978b93f437aba5428b6ea517e7b5671dd5d717a6 /src | |
parent | fdda3a8d464b292c5cdbd2f19de3f2c49d7cebe3 (diff) | |
download | xmlgraphics-fop-cee970d0e3ee2559c8261b2e101b828ca12ab696.tar.gz xmlgraphics-fop-cee970d0e3ee2559c8261b2e101b828ca12ab696.zip |
Tell about the offending font if it's not embedded and PDF/A is active.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@380091 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/java/org/apache/fop/pdf/PDFFont.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/pdf/PDFFont.java b/src/java/org/apache/fop/pdf/PDFFont.java index 9b827ebf1..b98736487 100644 --- a/src/java/org/apache/fop/pdf/PDFFont.java +++ b/src/java/org/apache/fop/pdf/PDFFont.java @@ -196,7 +196,7 @@ public class PDFFont extends PDFObject { if (getDocumentSafely().getPDFAMode().isPDFA1LevelB()) { if (this.getClass() == PDFFont.class) { throw new PDFConformanceException("For PDF/A-1, all fonts, even the base 14" - + " fonts, have to be embedded!"); + + " fonts, have to be embedded! Offending font: " + this.basefont); } } } |