diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-10-13 10:19:40 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-10-13 10:19:40 +0000 |
commit | e8d5613680eb883687d821a34fe2ad80914baee2 (patch) | |
tree | e8746b1da687c928e8b7aaed397072a14b437a99 /src/graph.php | |
parent | e61af065ecdd565683a54225911a2dd9e725acae (diff) | |
download | zetacomponents-graph-e8d5613680eb883687d821a34fe2ad80914baee2.zip zetacomponents-graph-e8d5613680eb883687d821a34fe2ad80914baee2.tar.gz |
- Added first, not complete working, version of ming driver
# Image drawing causes not proper handled error, causing an inifinite loop in
PHP
# Font drawing causes Segmentation fault
# Ming driver tests commented out for now in test suite
Diffstat (limited to 'src/graph.php')
-rw-r--r-- | src/graph.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/graph.php b/src/graph.php index ae6c74b..537bd36 100644 --- a/src/graph.php +++ b/src/graph.php @@ -106,6 +106,10 @@ class ezcGraph * Font type definition. Used for Postscript Type 1 fonts. */ const PS_FONT = 2; + /** + * Font type definition. Used for Palm Format Fonts for Ming driver. + */ + const PALM_FONT = 3; } ?> |