1

我正在使用 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;
4

1 回答 1

0

这是因为您上传了损坏的图像,而 GD 无法处理那种图像。请在本期查看。

尝试像这样抑制此错误。

ini_set('gd.jpeg_ignore_warning', true);

希望它对你有用。

于 2015-04-22T17:14:26.187 回答