我正在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();