修复图形库

This commit is contained in:
7IN0SAN9
2015-12-16 22:19:07 +08:00
parent 647afed539
commit 3393710a2a

View File

@@ -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;
}