diff --git a/library/org/image.php b/library/org/image.php index b742b5bb..18d95030 100644 --- a/library/org/image.php +++ b/library/org/image.php @@ -54,7 +54,7 @@ class Image public static function init($type = 'Gd', $imgname = null) { /* 引入处理库,实例化图片处理对象 */ - $class = '\\think\\image\\driver\\' . strtolower($type); + $class = '\\org\\image\\driver\\' . strtolower($type); self::$im = new $class($imgname); return self::$im; }