diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2008-05-03 16:36:57 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2008-05-03 16:36:57 +0000 |
commit | 5d4947a0cb1ba3bd7e4097b3da9b772dd16d4094 (patch) | |
tree | 088ede950f85e6af9aca1902bcc34a1a463e7d37 /src/graph.php | |
parent | 92c7fc36f830d168e02cd26729d7f099bddce707 (diff) | |
download | zetacomponents-graph-5d4947a0cb1ba3bd7e4097b3da9b772dd16d4094.zip zetacomponents-graph-5d4947a0cb1ba3bd7e4097b3da9b772dd16d4094.tar.gz |
- Implemented feature #10957: Embed glyphs for exact SVG font width estimation
# Lots of binary diffs, because font-family names are now enclosed in ' in SVG
# files.
Diffstat (limited to 'src/graph.php')
-rw-r--r-- | src/graph.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/graph.php b/src/graph.php index efd8412..3db4eb1 100644 --- a/src/graph.php +++ b/src/graph.php @@ -115,6 +115,11 @@ class ezcGraph * Font type definition. Used for Palm Format Fonts for Ming driver. */ const PALM_FONT = 3; + /** + * Font type definition. Used for SVG fonts vonverted by ttf2svg used in + * the SVG driver. + */ + const SVG_FONT = 4; /** * Identifier for keys in complex dataset arrays |