diff options
author | Kelly Campbell <kellyc@apache.org> | 2001-02-05 08:35:46 +0000 |
---|---|---|
committer | Kelly Campbell <kellyc@apache.org> | 2001-02-05 08:35:46 +0000 |
commit | 3adb1822bede8f9cb385161953d31d4de51e9684 (patch) | |
tree | 7821882b14db1dbe15b41c059fb5719758cae555 /conf | |
parent | a0de8b9e1ede578b39fb7dc55f8e17e718928993 (diff) | |
download | xmlgraphics-fop-3adb1822bede8f9cb385161953d31d4de51e9684.tar.gz xmlgraphics-fop-3adb1822bede8f9cb385161953d31d4de51e9684.zip |
Added TrueType and embedded font support from Tore Engvig and
Alain Fagot
PR:
Obtained from:
Submitted by: Tore Engvig <tengvig@infostream.no>, Alain FAGOT <Alain.FAGOT@framfab.nl>
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194018 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'conf')
-rw-r--r-- | conf/userconfig.xml | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/conf/userconfig.xml b/conf/userconfig.xml index d35d13688..9c962dec8 100644 --- a/conf/userconfig.xml +++ b/conf/userconfig.xml @@ -40,4 +40,34 @@ basedir: normally the base directory is the directory where the fo file is </entry> --> -</configuration>
\ No newline at end of file +<!-- +************************************************************************ + Use kerning, default is to noe use kerning, uncomment to use kerning +************************************************************************ +--> + + <entry> + <key>use-kerning</key> + <value>yes</value> + </entry> + + +<!-- +************************************************************************ + Font embedding, only the fonts mentioned here is embedded + The value is the name of the font (the name is what is returned by + the font's fontName() method +************************************************************************ +--> + <entry> + <key>embed-fonts</key> + <list> + <value>Perpetua</value> + <value>Perpetua,Bold</value> + </list> + </entry> + +</configuration> + + + |