Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 codeigniter 的图像库来调整图像大小。但是图像库的调整大小功能有时会产生损坏的图像并且也不会出现任何错误。如何检测损坏的图像。
if ( ! $this->image_lib->resize()) { echo $this->image_lib->display_errors(); }
终于得到了答案。在 Image_lib.php 文件中转到第 1259 行并替换 imagejpeg($resource,'', $this->quality); with imagejpeg($resource,NULL, $this->quality); 祝你有美好的一天