ホームページ > バックエンド開発 > PHPの問題 > PHPで画像をトリミングする手順は何ですか

PHPで画像をトリミングする手順は何ですか

藏色散人
リリース: 2023-03-14 08:22:01
オリジナル
3774 人が閲覧しました

php 画像をトリミングする手順: 1. PHP サンプル ファイルを作成します。 2. 「関数 imageCropper(){...}」メソッドを使用して、画像の変形なしのトリミングを実現します。 3. 「関数 imageZoom」を使用します。 (){ ...}" メソッドを使用すると、画像を均等にトリミングできます。

PHPで画像をトリミングする手順は何ですか

この記事の動作環境: Windows7 システム、PHP7.4 バージョン、DELL G3 コンピューター

手順はPHPで画像をトリミングしますか?

PHP による画像不変トリミングと画像比例トリミングを実現する方法

この記事では、PHP による画像不変トリミングと画像比例トリミングを実現する方法の例について説明します。参考までに皆さんと共有してください。詳細は次のとおりです。

画像変更なしのトリミング

<?php
/**
 * imageCropper
 * @param string $source_path
 * @param string $target_width
 * @param string $target_height
 */
function imageCropper($source_path, $target_width, $target_height){
  $source_info  = getimagesize($source_path);
  $source_width = $source_info[0];
  $source_height = $source_info[1];
  $source_mime  = $source_info[&#39;mime&#39;];
  $source_ratio = $source_height / $source_width;
  $target_ratio = $target_height / $target_width;
  if ($source_ratio > $target_ratio){
    // image-to-height
    $cropped_width = $source_width;
    $cropped_height = $source_width * $target_ratio;
    $source_x = 0;
    $source_y = ($source_height - $cropped_height) / 2;
  }elseif ($source_ratio < $target_ratio){
    //image-to-widht
    $cropped_width = $source_height / $target_ratio;
    $cropped_height = $source_height;
    $source_x = ($source_width - $cropped_width) / 2;
    $source_y = 0;
  }else{
    //image-size-ok
    $cropped_width = $source_width;
    $cropped_height = $source_height;
    $source_x = 0;
    $source_y = 0;
  }
  switch ($source_mime){
    case &#39;image/gif&#39;:
      $source_image = imagecreatefromgif($source_path);
      break;
    case &#39;image/jpeg&#39;:
      $source_image = imagecreatefromjpeg($source_path);
      break;
    case &#39;image/png&#39;:
      $source_image = imagecreatefrompng($source_path);
      break;
    default:
      return ;
      break;
  }
  $target_image = imagecreatetruecolor($target_width, $target_height);
  $cropped_image = imagecreatetruecolor($cropped_width, $cropped_height);
  // copy
  imagecopy($cropped_image, $source_image, 0, 0, $source_x, $source_y, $cropped_width, $cropped_height);
  // zoom
  imagecopyresampled($target_image, $cropped_image, 0, 0, 0, 0, $target_width, $target_height, $cropped_width, $cropped_height);
  header(&#39;Content-Type: image/jpeg&#39;);
  imagejpeg($target_image);
  imagedestroy($source_image);
  imagedestroy($target_image);
  imagedestroy($cropped_image);
}
$filename = "8fcb7a0831b79c61.jpg";
imageCropper($filename,200,200);
?>
ログイン後にコピー

画像の比例トリミング

<?php
/**
 * imageZoom
 * @param string $file
 * @param double $zoom
 */
function imageZoom($filename,$zoom=0.6){
  //baseinfo
  $sourceImageInfo = getimagesize($filename);
  $sourceWidth = $sourceImageInfo[0];
  $sourceHeight = $sourceImageInfo[1];
  $sourceMine = $sourceImageInfo[&#39;mime&#39;];
  $sourceRatio = $sourceWidth/$sourceHeight;
  $sourceX = 0;
  $sourceY = 0;
  //zoom
  $targetRatio = $zoom;
  //target-widht-height
  $targetWidth = $sourceWidth*$targetRatio;
  $targetHeight = $sourceHeight*$targetRatio;
  //init-params
  $sourceImage = null;
  switch($sourceMine){
    case &#39;image/gif&#39;:
      $sourceImage = imagecreatefromgif($filename);
      break;
    case &#39;image/jpeg&#39;:
      $sourceImage = imagecreatefromjpeg($filename);
      break;
    case &#39;image/png&#39;:
      $sourceImage = imagecreatefrompng($filename);
      break;
    default:
      return ;
      break;
  }
  //temp-target-image
  $tempSourceImage = imagecreatetruecolor($sourceWidth, $sourceHeight);
  $targetImage = imagecreatetruecolor($targetWidth,$targetHeight);
  //copy
  imagecopy($tempSourceImage, $sourceImage, 0, 0, $sourceX, $sourceY, $sourceWidth, $sourceHeight);
  //zoom
  imagecopyresampled($targetImage, $tempSourceImage, 0, 0, 0, 0, $targetWidth, $targetHeight, $sourceWidth, $sourceHeight);
  //header
  header(&#39;Content-Type: image/jpeg&#39;);
  //image-loading
  imagejpeg($targetImage);
  //destroy
  imagedestroy($tempSourceImage);
  imagedestroy($sourceImage);
  imagedestroy($targetImage);
}
$filename = "8fcb7a0831b79c61.jpg";
imageZoom($filename);
?>
ログイン後にコピー

推奨される学習: 「PHP ビデオ チュートリアル

以上がPHPで画像をトリミングする手順は何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
php
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート