2
ErrorException [致命錯誤]:未找到類'Image'。Kohana [致命錯誤]:找不到類'Image'
我已創建的圖像對象:
$image = new Image($newFile);
$image = $image->resize(150, 150, Image::NONE);
$image->save($thumbsName);
它給上述的錯誤。 請幫忙。在Kohana中
ErrorException [致命錯誤]:未找到類'Image'。Kohana [致命錯誤]:找不到類'Image'
我已創建的圖像對象:
$image = new Image($newFile);
$image = $image->resize(150, 150, Image::NONE);
$image->save($thumbsName);
它給上述的錯誤。 請幫忙。在Kohana中
實例創建這樣的例子:
$image = Image::factory('path/to/file.ext');
此外,取消對圖像模塊的bootstrap.php行:
'image' => MODPATH.'image', // Image manipulation
仍然得到同樣的錯誤信息 – Json
有你的註釋掉Bootstrap對Image的引用? – yoda
仔細檢查您是否在引導程序中啓用了Image模塊,並且它確實存在於設置的目錄中。 – daGrevis