imagecreatefromjpeg(): gd-jpeg, libjpeg: recoverable error: Premature end of JPEG file

imagecreatefromjpeg(): gd-jpeg, libjpeg: recoverable error: Premature end of JPEG file

我正在使用 intervention/image 模块和 laravel 4.2 来上传图片 我正在使用此代码:

if (Input::hasFile('image'))
        {
            $file = Input::file('image');
            $file->move('uploads/2/', $file->getClientOriginalName());
            $image = Image::make(sprintf('uploads/2/%s', $file->getClientOriginalName()))->resize(120, 120)->save();
            return 'yes';
        }

对于某些图像它可以工作,对于某些图像它会产生此错误:

imagecreatefromjpeg(): gd-jpeg, libjpeg: recoverable error: Premature end of JPEG file 

switch ($info[2]) {
            case IMAGETYPE_PNG:
                $core = imagecreatefrompng($path);
                $this->gdResourceToTruecolor($core);
                break;

            case IMAGETYPE_JPEG:
                $core = imagecreatefromjpeg($path);
                $this->gdResourceToTruecolor($core);
                break;

这是因为您上传了损坏的图片,而 GD 无法处理此类图片。请在 this issue 中检查。

试着像这样抑制这个错误。

ini_set('gd.jpeg_ignore_warning', true);

希望对你有用。