在PHP中高效调整JPEG图像大小


82

在PHP中调整大图像大小的最有效方法是什么?

我目前正在使用GD函数imagecopyresampled来拍摄高分辨率图像,并干净地将其调整为可用于Web查看的尺寸(大约700像素宽乘700像素高)。

这对于较小(小于2 MB)的照片非常有用,并且整个调整大小操作在服务器上花费的时间不到一秒钟。但是,该网站最终将为摄影师提供服务,他们可能会上传最大10 MB的图像(或最大5000x4000像素的图像)。

对大图像执行这种大小调整操作往往会大大增加内存使用量(较大的图像可能会使脚本的内存使用量超过80 MB)。有什么方法可以使此调整大小操作更有效?我应该使用ImageMagick这样的备用图像库吗?

现在,调整大小代码看起来像这样

function makeThumbnail($sourcefile, $endfile, $thumbwidth, $thumbheight, $quality) {
    // Takes the sourcefile (path/to/image.jpg) and makes a thumbnail from it
    // and places it at endfile (path/to/thumb.jpg).

    // Load image and get image size.
    $img = imagecreatefromjpeg($sourcefile);
    $width = imagesx( $img );
    $height = imagesy( $img );

    if ($width > $height) {
        $newwidth = $thumbwidth;
        $divisor = $width / $thumbwidth;
        $newheight = floor( $height / $divisor);
    } else {
        $newheight = $thumbheight;
        $divisor = $height / $thumbheight;
        $newwidth = floor( $width / $divisor );
    }

    // Create a new temporary image.
    $tmpimg = imagecreatetruecolor( $newwidth, $newheight );

    // Copy and resize old image into new image.
    imagecopyresampled( $tmpimg, $img, 0, 0, 0, 0, $newwidth, $newheight, $width, $height );

    // Save thumbnail into a file.
    imagejpeg( $tmpimg, $endfile, $quality);

    // release the memory
    imagedestroy($tmpimg);
    imagedestroy($img);

Answers:


45

人们说ImageMagick更快。充其量只是比较两个库并进行度量即可。

  1. 准备1000张典型图像。
  2. 编写两个脚本-一个用于GD,一个用于ImageMagick。
  3. 将它们都运行几次。
  4. 比较结果(总执行时间,CPU和I / O使用率,结果图像质量)。

其他人最好的东西可能对您来说不是最好的。

另外,我认为ImageMagick具有更好的API接口。


2
在我使用过的服务器上,GD通常会用完RAM并崩溃,而ImageMagick则不会。
Abhi Beckert

我不能不同意。我发现imagemagick是一个噩梦。对于大型图片,我经常遇到500个服务器错误。诚然,GD库会更早崩溃。但是,有时我们只谈论6Mb图像,而500个错误只是最糟糕的情况。
单一实体

20

这是我在项目中使用过的php.net文档的一个片段,可以正常工作:

<?
function fastimagecopyresampled (&$dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h, $quality = 3) {
    // Plug-and-Play fastimagecopyresampled function replaces much slower imagecopyresampled.
    // Just include this function and change all "imagecopyresampled" references to "fastimagecopyresampled".
    // Typically from 30 to 60 times faster when reducing high resolution images down to thumbnail size using the default quality setting.
    // Author: Tim Eckel - Date: 09/07/07 - Version: 1.1 - Project: FreeRingers.net - Freely distributable - These comments must remain.
    //
    // Optional "quality" parameter (defaults is 3). Fractional values are allowed, for example 1.5. Must be greater than zero.
    // Between 0 and 1 = Fast, but mosaic results, closer to 0 increases the mosaic effect.
    // 1 = Up to 350 times faster. Poor results, looks very similar to imagecopyresized.
    // 2 = Up to 95 times faster.  Images appear a little sharp, some prefer this over a quality of 3.
    // 3 = Up to 60 times faster.  Will give high quality smooth results very close to imagecopyresampled, just faster.
    // 4 = Up to 25 times faster.  Almost identical to imagecopyresampled for most images.
    // 5 = No speedup. Just uses imagecopyresampled, no advantage over imagecopyresampled.

    if (empty($src_image) || empty($dst_image) || $quality <= 0) { return false; }
    if ($quality < 5 && (($dst_w * $quality) < $src_w || ($dst_h * $quality) < $src_h)) {
        $temp = imagecreatetruecolor ($dst_w * $quality + 1, $dst_h * $quality + 1);
        imagecopyresized ($temp, $src_image, 0, 0, $src_x, $src_y, $dst_w * $quality + 1, $dst_h * $quality + 1, $src_w, $src_h);
        imagecopyresampled ($dst_image, $temp, $dst_x, $dst_y, 0, 0, $dst_w, $dst_h, $dst_w * $quality, $dst_h * $quality);
        imagedestroy ($temp);
    } else imagecopyresampled ($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
    return true;
}
?>

http://us.php.net/manual/zh/function.imagecopyresampled.php#77679


您知道$ dst_x,$ dst_y,$ src_x,$ src_y的内容吗?
杰森·戴维斯(JasonDavis)2009年

您不应该替换$quality + 1($quality + 1)吗?实际上,您只是在调整无用的额外像素。$dst_w * $quality>时对短路的检查在哪里$src_w
沃尔夫2011年

8
复制/粘贴来自建议的编辑:这是该函数的作者Tim Eckel。$ quality + 1是正确的,它用于避免一个像素宽的黑色边框,而不更改质量。另外,此功能与imagecopyresampled插件兼容,因此对于语法方面的问题,请参阅imagecopyresampled命令,该命令是相同的。
2011年

这种解决方案比问题中提出的解决方案更好吗?您仍在使用具有相同功能的GD库。
TMS

1
@Tomas,实际上,它imagecopyresized()也在使用。基本上,它将首先将图像调整为可管理的大小(final dimensions乘以quality),然后对其重新采样,而不是简单地对全尺寸图像重新采样。它可能会导致最终图像的质量降低,但与imagecopyresampled()单独使用相比,重采样算法默认只处理最终尺寸为最终尺寸3倍的图像,因此重采样算法所使用的资源要比单独使用的资源少得多。其可以是较大,特别是对照片被调整为缩略图)。
0b10011 2012年

12

phpThumb尽可能使用ImageMagick来提高速度(如有必要,可以降为GD),并且似乎可以很好地缓存以减少服务器上的负载。试用起来非常轻巧(要调整图像的大小,只需使用包含图形文件名和输出尺寸的GET查询调用phpThumb.php即可),因此您可以试试看它是否满足您的需求。


但这似乎不是标准PHP的一部分……所以它在大多数主机上都不可用:(
TMS

1
在我看来,这只是一个PHP脚本,您只需要具有php gd和imagemagick
Flo

实际上,它确实是PHP脚本,而不是您必须安装的扩展,因此对共享主机环境很有用。尝试上传尺寸小于4000 MB的<1MB的JPEG图像时,我遇到“允许的N字节内存大小已耗尽”错误。使用phpThumb(从而使用ImageMagick)解决了该问题,并且很容易将其合并到我的代码中。
13年

10

对于较大的图像,请使用libjpeg调整ImageMagick中图像加载的大小,从而显着减少内存使用并提高性能,而GD无法实现。

$im = new Imagick();
try {
  $im->pingImage($file_name);
} catch (ImagickException $e) {
  throw new Exception(_('Invalid or corrupted image file, please try uploading another image.'));
}

$width  = $im->getImageWidth();
$height = $im->getImageHeight();
if ($width > $config['width_threshold'] || $height > $config['height_threshold'])
{
  try {
/* send thumbnail parameters to Imagick so that libjpeg can resize images
 * as they are loaded instead of consuming additional resources to pass back
 * to PHP.
 */
    $fitbyWidth = ($config['width_threshold'] / $width) > ($config['height_threshold'] / $height);
    $aspectRatio = $height / $width;
    if ($fitbyWidth) {
      $im->setSize($config['width_threshold'], abs($width * $aspectRatio));
    } else {
      $im->setSize(abs($height / $aspectRatio), $config['height_threshold']);
    }
    $im->readImage($file_name);

/* Imagick::thumbnailImage(fit = true) has a bug that it does fit both dimensions
 */
//  $im->thumbnailImage($config['width_threshold'], $config['height_threshold'], true);

// workaround:
    if ($fitbyWidth) {
      $im->thumbnailImage($config['width_threshold'], 0, false);
    } else {
      $im->thumbnailImage(0, $config['height_threshold'], false);
    }

    $im->setImageFileName($thumbnail_name);
    $im->writeImage();
  }
  catch (ImagickException $e)
  {
    header('HTTP/1.1 500 Internal Server Error');
    throw new Exception(_('An error occured reszing the image.'));
  }
}

/* cleanup Imagick
 */
$im->destroy();

9

从您的疑问来看,您似乎是GD的新手,我将分享我的一些经验,也许这有点偏离主题,但是我认为这对像您这样的GD新手会有帮助:

步骤1,验证文件。使用以下功能检查$_FILES['image']['tmp_name']文件是否为有效文件:

   function getContentsFromImage($image) {
      if (@is_file($image) == true) {
         return file_get_contents($image);
      } else {
         throw new \Exception('Invalid image');
      }
   }
   $contents = getContentsFromImage($_FILES['image']['tmp_name']);

步骤2,获取文件格式尝试使用带有finfo扩展名的以下功能来检查文件(内容)的文件格式。你会说为什么不只$_FILES["image"]["type"]检查文件格式呢?由于它检查文件的扩展名而不是文件内容,如果有人重命名原名文件world.pngworld.jpg$_FILES["image"]["type"]将返回JPEG不PNG,所以$_FILES["image"]["type"]可能会返回错误的结果。

   function getFormatFromContents($contents) {
      $finfo = new \finfo();
      $mimetype = $finfo->buffer($contents, FILEINFO_MIME_TYPE);
      switch ($mimetype) {
         case 'image/jpeg':
            return 'jpeg';
            break;
         case 'image/png':
            return 'png';
            break;
         case 'image/gif':
            return 'gif';
            break;
         default:
            throw new \Exception('Unknown or unsupported image format');
      }
   }
   $format = getFormatFromContents($contents);

Step.3,获取GD资源从之前的内容中获取GD资源:

   function getGDResourceFromContents($contents) {
      $resource = @imagecreatefromstring($contents);
      if ($resource == false) {
         throw new \Exception('Cannot process image');
      }
      return $resource;
   }
   $resource = getGDResourceFromContents($contents);

步骤4,获取图像尺寸现在,您可以使用以下简单代码获取图像尺寸:

  $width = imagesx($resource);
  $height = imagesy($resource);

现在,让我们看看从原始图像中得到了什么变量:

       $contents, $format, $resource, $width, $height
       OK, lets move on

第5步,计算调整大小的图像参数这一步与您的问题有关,以下函数的目的是为GD函数获取调整大小的参数imagecopyresampled(),代码虽然很长,但是效果很好,甚至有以下三种选择:Stretch,Shrink ,然后填写。

Stretch:输出图像的尺寸与您设置的新尺寸相同。不会保持高/宽比。

收缩:输出图像的尺寸不会超过您指定的新尺寸,并保持图像的高/宽比。

fill:输出图像的尺寸将与您给定的新尺寸相同,如果需要,它将裁剪和调整图像的尺寸,并保持图像的高宽比。此选项是您在问题中需要的。

   function getResizeArgs($width, $height, $newwidth, $newheight, $option) {
      if ($option === 'stretch') {
         if ($width === $newwidth && $height === $newheight) {
            return false;
         }
         $dst_w = $newwidth;
         $dst_h = $newheight;
         $src_w = $width;
         $src_h = $height;
         $src_x = 0;
         $src_y = 0;
      } else if ($option === 'shrink') {
         if ($width <= $newwidth && $height <= $newheight) {
            return false;
         } else if ($width / $height >= $newwidth / $newheight) {
            $dst_w = $newwidth;
            $dst_h = (int) round(($newwidth * $height) / $width);
         } else {
            $dst_w = (int) round(($newheight * $width) / $height);
            $dst_h = $newheight;
         }
         $src_x = 0;
         $src_y = 0;
         $src_w = $width;
         $src_h = $height;
      } else if ($option === 'fill') {
         if ($width === $newwidth && $height === $newheight) {
            return false;
         }
         if ($width / $height >= $newwidth / $newheight) {
            $src_w = (int) round(($newwidth * $height) / $newheight);
            $src_h = $height;
            $src_x = (int) round(($width - $src_w) / 2);
            $src_y = 0;
         } else {
            $src_w = $width;
            $src_h = (int) round(($width * $newheight) / $newwidth);
            $src_x = 0;
            $src_y = (int) round(($height - $src_h) / 2);
         }
         $dst_w = $newwidth;
         $dst_h = $newheight;
      }
      if ($src_w < 1 || $src_h < 1) {
         throw new \Exception('Image width or height is too small');
      }
      return array(
          'dst_x' => 0,
          'dst_y' => 0,
          'src_x' => $src_x,
          'src_y' => $src_y,
          'dst_w' => $dst_w,
          'dst_h' => $dst_h,
          'src_w' => $src_w,
          'src_h' => $src_h
      );
   }
   $args = getResizeArgs($width, $height, 150, 170, 'fill');

步骤6,调整大小的图像使用$args$width$height$format和$资源,我们从上面钻进了下面的函数,并得到调整后的图像的新资源:

   function runResize($width, $height, $format, $resource, $args) {
      if ($args === false) {
         return; //if $args equal to false, this means no resize occurs;
      }
      $newimage = imagecreatetruecolor($args['dst_w'], $args['dst_h']);
      if ($format === 'png') {
         imagealphablending($newimage, false);
         imagesavealpha($newimage, true);
         $transparentindex = imagecolorallocatealpha($newimage, 255, 255, 255, 127);
         imagefill($newimage, 0, 0, $transparentindex);
      } else if ($format === 'gif') {
         $transparentindex = imagecolorallocatealpha($newimage, 255, 255, 255, 127);
         imagefill($newimage, 0, 0, $transparentindex);
         imagecolortransparent($newimage, $transparentindex);
      }
      imagecopyresampled($newimage, $resource, $args['dst_x'], $args['dst_y'], $args['src_x'], $args['src_y'], $args['dst_w'], $args['dst_h'], $args['src_w'], $args['src_h']);
      imagedestroy($resource);
      return $newimage;
   }
   $newresource = runResize($width, $height, $format, $resource, $args);

步骤7,获取新内容,使用以下功能从新的GD资源获取内容:

   function getContentsFromGDResource($resource, $format) {
      ob_start();
      switch ($format) {
         case 'gif':
            imagegif($resource);
            break;
         case 'jpeg':
            imagejpeg($resource, NULL, 100);
            break;
         case 'png':
            imagepng($resource, NULL, 9);
      }
      $contents = ob_get_contents();
      ob_end_clean();
      return $contents;
   }
   $newcontents = getContentsFromGDResource($newresource, $format);

步骤8获取扩展名,使用以下函数从图像格式获取扩展名(注意,图像格式不等于图像扩展名):

   function getExtensionFromFormat($format) {
      switch ($format) {
         case 'gif':
            return 'gif';
            break;
         case 'jpeg':
            return 'jpg';
            break;
         case 'png':
            return 'png';
      }
   }
   $extension = getExtensionFromFormat($format);

步骤9保存图像如果我们有一个名为mike的用户,则可以执行以下操作,它将保存到与此php脚本相同的文件夹中:

$user_name = 'mike';
$filename = $user_name . '.' . $extension;
file_put_contents($filename, $newcontents);

步骤10销毁资源不要忘记销毁GD资源!

imagedestroy($newresource);

或者您可以将所有代码编写到一个类中,并只需使用以下代码:

   public function __destruct() {
      @imagedestroy($this->resource);
   }

提示

我建议不要转换用户上传的文件格式,您会遇到很多问题。


4

我建议您按照以下方式工作:

  1. 对上传的文件执行getimagesize(),以检查图像类型和大小
  2. 将所有小于700x700px的上载JPEG图像保存到目标文件夹“原样”中
  3. 将GD库用于中等大小的图像(有关代码示例,请参见本文:使用PHP和GD Library调整图像大小
  4. 使用ImageMagick放大图像。如果愿意,可以在后台使用ImageMagick。

要在后台使用ImageMagick,请将上载的文件移动到一个临时文件夹,然后安排一个CRON作业,该作业将所有文件“转换”为jpeg并相应地调整其大小。请参阅以下命令的语法:imagemagick-命令行处理

您可以提示用户该文件已上载并计划进行处理。CRON作业可以安排为每天在特定间隔运行。处理后可以删除源图像,以确保不对图像进行两次处理。


我看不出第3点的任何原因-将GD用于中型。为什么不对他们也使用ImageMagick?那会大大简化代码。
TMS

比起cron更好的是一个使用inotifywait的脚本,因此调整大小将立即开始,而不是等待cron作业开始。
ColinM 2012年

3

我听说过有关Imagick库的重要信息,不幸的是,我无法将其安装在工作计算机上,也无法在家中安装(并且相信我,我在各种论坛上花费了数小时)。

总结,我决定尝试这个PHP类:

http://www.verot.net/php_class_upload.htm

这很酷,我可以调整各种图像的大小(也可以将它们转换为JPG)。


3

ImageMagick是多线程的,因此它看起来更快,但实际上比GD使用更多的资源。如果同时使用GD并行运行多个PHP脚本,则它们在简单操作上的速度会超过ImageMagick。ExactImage的功能不如ImageMagick,但要快得多,尽管PHP无法提供,但您必须将其安装在服务器上并通过运行exec


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.