00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010 class ImageToolsFactory {
00011 const IMPL_GD = 'gd';
00012
00013
00014
00015
00016
00017
00018 public static function create_imagetools() {
00019 $ret = false;
00020
00021
00022
00023
00024
00025
00026 self::load(self::IMPL_GD);
00027 $ret = new ImageToolsGD();
00028
00029 return $ret;
00030 }
00031
00032 public static function load($implementation) {
00033 switch ($implementation) {
00034 case self::IMPL_GD:
00035 require_once dirname(__FILE__) . '/imagetools_impl/imagetools.gd.cls.php';
00036 break;
00037 default:
00038 break;
00039 }
00040 }
00041 }