我正在使用CodeIgniter并试图创建大拇指的图像。我成功了一些但在某些情况下失败了。我收到以下错误 -
<< A PHP Error was encountered
Severity: Notice
Message: imagecreatefromjpeg(): gd-jpeg, libjpeg: recoverable error: Premature end of JPEG file
Filename: libraries/Image_lib.php
Line Number: 1155 >>
我在'image_lib'库加载后使用了这段代码。
ini_set('gd.jpeg_ignore_warning', 1);
任何解决方案?提前谢谢!
答案 0 :(得分:3)
问题在于imagecreatefromjpeg
最好的选择是扩展基础库并重载image_create_gd
方法
创建新文件./application/libraries/MY_Image_lib.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Class MY_Image_lib extends CI_Image_Lib {
function image_create_gd($path = '', $image_type = '')
{
if ($path == '')
$path = $this->full_src_path;
if ($image_type == '')
$image_type = $this->image_type;
switch ($image_type)
{
case 1 :
if ( ! function_exists('imagecreatefromgif'))
{
$this->set_error(array('imglib_unsupported_imagecreate', 'imglib_gif_not_supported'));
return FALSE;
}
return @imagecreatefromgif($path);
break;
case 2 :
if ( ! function_exists('imagecreatefromjpeg'))
{
$this->set_error(array('imglib_unsupported_imagecreate', 'imglib_jpg_not_supported'));
return FALSE;
}
return @imagecreatefromjpeg($path);
break;
case 3 :
if ( ! function_exists('imagecreatefrompng'))
{
$this->set_error(array('imglib_unsupported_imagecreate', 'imglib_png_not_supported'));
return FALSE;
}
return @imagecreatefrompng($path);
break;
}
$this->set_error(array('imglib_unsupported_imagecreate'));
return FALSE;
}
}
答案 1 :(得分:2)
我遇到了完全相同的问题。在使用 imagecreatefromjpeg()功能进一步对图像进行后处理之前,我首先将图像数据存储在本地HDD上。
在某些时候,本地存储的图像在存储过程中被破坏,并且在被 imagecreatefromjpeg($ imagePath)调用时 PHP警告: imagecreatefromjpeg():gd-jpeg ,libjpeg:可恢复的错误:JPEG文件过早结束。 出现。
因此,要解决PHP警告并弥补损坏的图像,我在PHP手册(http://php.net/manual/en/function.imagecreatefromjpeg.php)中使用了明确定义的解决方案,请参阅函数 LoadJpeg($ imgname) < / p>
为了防止进一步的失败,我一直关注为什么提供给 imagecreatefromjpeg()功能的数据首先不是完整的。就我而言,网络洪水问题导致一些图像损坏。
长话短说,您可能想要在尝试扩展基础库等之前检查提供到 imagecreatefromjpeg()函数的确切内容。
答案 2 :(得分:2)
尝试添加@imagecreatefromjpeg($ img)而不是imagecreatefromjpeg($ img)
这里@是错误抑制器
答案 3 :(得分:0)
当我收到此错误时,我检查我的JPG文件是否已损坏。考虑检查一下。