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_autoload.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_autoload.php')
-rw-r--r-- | src/graph_autoload.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/graph_autoload.php b/src/graph_autoload.php index 2169d18..deb6f92 100644 --- a/src/graph_autoload.php +++ b/src/graph_autoload.php @@ -46,6 +46,7 @@ return array( 'ezcGraphDriver' => 'Graph/interfaces/driver.php', 'ezcGraphFontRenderingException' => 'Graph/exceptions/font_rendering.php', 'ezcGraphUnknownFontTypeException' => 'Graph/exceptions/font_type.php', + 'ezcGraphInvalidFontTypeException' => 'Graph/exceptions/invalid_font.php', 'ezcGraphDriverOptions' => 'Graph/options/driver.php', 'ezcGraphGdDriver' => 'Graph/driver/gd.php', 'ezcGraphGdDriverOptions' => 'Graph/options/gd_driver.php', @@ -54,6 +55,10 @@ return array( 'ezcGraphSvgDriverOptions' => 'Graph/options/svg_driver.php', 'ezcGraphSvgDriverInvalidIdException' => 'Graph/exceptions/invalid_id.php', 'ezcGraphVerboseDriver' => 'Graph/driver/verbose.php', + 'ezcGraphMingDriver' => 'Graph/driver/ming.php', + 'ezcGraphMingDriverOptions' => 'Graph/options/ming_driver.php', + 'ezcGraphMingBitmapTypeException' => 'Graph/exceptions/ming_bitmap_type.php', + 'ezcGraphMingBitmapBoundingsException' => 'Graph/exceptions/ming_bitmap_boundings.php', 'ezcGraphPalette' => 'Graph/interfaces/palette.php', 'ezcGraphPaletteTango' => 'Graph/palette/tango.php', |