示例#1
0
 function MY_Image_lib($props = array())
 {
     $convert_path = $this->_get_convert_path();
     if ($convert_path === FALSE) {
         $props['image_library'] = 'gd2';
     } else {
         $props['image_library'] = 'imagemagick';
         $props['library_path'] = $convert_path;
     }
     parent::CI_Image_lib();
 }
示例#2
0
 public function __construct()
 {
     parent::CI_Image_lib();
 }
 function MY_Image_lib($props = array())
 {
     parent::CI_Image_lib($props);
 }