在 codeigniter 中调整图像大小时图像损坏

broken image while resizing image in codeigniter

我正在使用 codeigniter 的图像库来调整图像大小。但是图像库的调整大小功能有时会产生损坏的图像并且也不会出现任何错误。 如何检测损坏的图像。

if ( ! $this->image_lib->resize())
{
    echo $this->image_lib->display_errors();
}

终于得到 answer.In Image_lib.php 文件转到第 1259 行并替换 imagejpeg($resource,'', $this->quality); with imagejpeg($resource,NULL, $this->quality); 祝你有美好的一天