我正在CodeIgniter中使用ImageMagick庫來重新調整大小並使用圖像庫旋轉圖像。但它的生成錯誤。錯誤是 - 「圖像庫的路徑不正確,請在圖像首選項中設置正確的路徑。」 請幫助解決這個問題。 謝謝先進。如何爲imagemagick提供圖像庫路徑
$config = array();
$config['image_library'] = 'ImageMagick';
$config['source_image'] = $file;
$config['new_image'] = $file;
$config['create_thumb'] = FALSE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 50;
$config['height'] = 50;
$this->image_lib->initialize($config);
if (!$this->image_lib->resize())
{
echo "resize -".$this->image_lib->display_errors();
}
$this->image_lib->clear();