84

PHPで大きな画像のサイズを変更する最も効率的な方法は何ですか?

現在、GD関数 imagecopyresampled を使用して高解像度の画像を取得し、Web 表示用のサイズ (幅約 700 ピクセル、高さ 700 ピクセル) にきれいにサイズ変更しています。

これは、小さな (2 MB 未満の) 写真でうまく機能し、サーバー上でのサイズ変更操作全体に 1 秒もかかりません。ただし、このサイトは最終的に、サイズが 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);
4

9 に答える 9

47

ImageMagick の方がはるかに高速であると人々は言います。せいぜい両方のライブラリを比較して測定するだけです。

  1. 代表的な画像を 1000 枚用意します。
  2. GD 用と ImageMagick 用の 2 つのスクリプトを作成します。
  3. 両方を数回実行します。
  4. 結果を比較します (合計実行時間、CPU と I/O の使用率、結果の画像の品質)。

他の人にとって最高のものは、あなたにとって最高のものではありません。

また、私の意見では、ImageMagick の API インターフェイスははるかに優れています。

于 2008-08-15T22:08:38.993 に答える
22

これは、私がプロジェクトで使用し、正常に動作する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/en/function.imagecopyresampled.php#77679

于 2008-08-15T21:50:18.423 に答える
12

phpThumbは、速度のために可能な限り ImageMagick を使用し (必要に応じて GD にフォールバックします)、サーバーの負荷を軽減するためにかなり適切にキャッシュするようです。試してみるのはかなり軽量なので (画像のサイズを変更するには、グラフィック ファイル名と出力サイズを含む GET クエリを使用して phpThumb.php を呼び出すだけです)、必要に応じて試してみてください。

于 2008-08-15T20:53:14.903 に答える
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();
于 2011-01-06T09:15:58.990 に答える
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.png と呼ばれていたファイルの名前world.jpg変更すると、$_FILES["image"]["type"]png ではなく jpeg$_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()のサイズ変更引数を取得することです。コードは少し長いですが、うまく機能し、3 つのオプションもあります: ストレッチ、縮小、および塗りつぶします。

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、および $resource を次の関数に使用し、サイズ変更された画像の新しいリソースを取得します。$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);

Step 10 destroy resource GDリソースのdestroyを忘れずに!

imagedestroy($newresource);

または、すべてのコードをクラスに記述して、次を使用するだけです。

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

チップ

ユーザーがアップロードするファイル形式を変換しないことをお勧めします。多くの問題が発生します。

于 2013-10-30T06:28:47.877 に答える
4

次の行に沿って作業することをお勧めします。

  1. アップロードされたファイルに対して getimagesize( ) を実行して、画像のタイプとサイズを確認します
  2. アップロードされた JPEG 画像が 700x700 ピクセルより小さい場合は、宛先フォルダーに「そのまま」保存します。
  3. 中サイズの画像には GD ライブラリを使用します (コード サンプルについては、この記事を参照してください: Resize Images Using PHP and GD Library )
  4. 大きな画像には ImageMagick を使用します。必要に応じて、バックグラウンドで ImageMagick を使用できます。

バックグラウンドで ImageMagick を使用するには、アップロードされたファイルを一時フォルダーに移動し、すべてのファイルを jpeg に「変換」してサイズを変更する CRON ジョブをスケジュールします。コマンド構文については、imagemagick-command line processingを参照してください。

ファイルがアップロードされ、処理されるようにスケジュールされていることをユーザーに確認することができます。CRON ジョブは、特定の間隔で毎日実行するようにスケジュールできます。画像が 2 回処理されないようにするために、処理後にソース画像を削除できます。

于 2009-04-04T08:25:53.690 に答える
3

ImageMagickはマルチスレッドであるため、高速に見えますが、実際にはGDよりもはるかに多くのリソースを使用します。GDを使用して複数のPHPスクリプトを並行して実行した場合、単純な操作でImageMagickよりも高速になります。ExactImageはImageMagickよりも強力ではありませんが、はるかに高速ですが、PHPからは利用できませんが、サーバーにインストールして実行する必要がありますexec

于 2011-11-30T05:37:32.817 に答える
3

Imagick ライブラリについて大きな話題を耳にしましたが、残念ながら、職場のコンピューターにも自宅にもインストールできませんでした (信じてください、私はあらゆる種類のフォーラムに何時間も費やしました)。

その後、この PHP クラスを試すことにしました。

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

とてもクールで、あらゆる種類の画像のサイズを変更できます (JPG に変換することもできます)。

于 2011-02-15T13:21:05.543 に答える
2

大きな画像にはphpThumb()を使用します。使用方法は次のとおりです: http://abcoder.com/php/problem-with-resizing-corrupted-images-using-php-image-functions/。また、大きな破損した画像にも機能します。

于 2009-06-05T18:40:02.707 に答える