diff options
author | Mehdi Houshmand <mehdi@apache.org> | 2012-03-16 11:44:09 +0000 |
---|---|---|
committer | Mehdi Houshmand <mehdi@apache.org> | 2012-03-16 11:44:09 +0000 |
commit | 0e6c4648996b5bfd38330129fcdfaaa72f86b09c (patch) | |
tree | 38dbbb164c5e355841f7c853e3986816f18bcbee /src/java/org/apache/fop/fonts/FontEventProducer.java | |
parent | 8661b3a84d3c71a10bba467d5575687c21da25ba (diff) | |
download | xmlgraphics-fop-0e6c4648996b5bfd38330129fcdfaaa72f86b09c.tar.gz xmlgraphics-fop-0e6c4648996b5bfd38330129fcdfaaa72f86b09c.zip |
Bugzila#52849: SVG font being painted as shapes when font present in the system
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1301445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fonts/FontEventProducer.java')
-rw-r--r-- | src/java/org/apache/fop/fonts/FontEventProducer.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fonts/FontEventProducer.java b/src/java/org/apache/fop/fonts/FontEventProducer.java index 702d3efb6..60dbcc6ad 100644 --- a/src/java/org/apache/fop/fonts/FontEventProducer.java +++ b/src/java/org/apache/fop/fonts/FontEventProducer.java @@ -73,10 +73,17 @@ public interface FontEventProducer extends EventProducer { /** * An error occurred trying to find the font directory specified in the config file. - * @param source the event sourece + * @param source the event source * @param dir the directory in the config file * @event.severity WARN */ void fontDirectoryNotFound(Object source, String dir); + /** + * The SVG text will be stroked as shapes. + * @param source the event source + * @param fontFamily the family name of the font that is being stroked + * @event.severity WARN + */ + void svgTextStrokedAsShapes(Object source, String fontFamily); } |