- function my_image_resize($src_file, $dst_file , $new_width , $new_height)
- {
- $src_img=imagecreatefromjpeg($src_file);
- $w=imagesx($src_img);
- $h= Imagesy($src_img);
- $ratio_w=1.0 * $new_width / $w;
- $ratio_h=1.0 * $new_height / $h;
- $ratio=1.0;
- // 生成された画像の高さと幅は、元の比率、または両方が大きい場合、拡大には大きな比率を使用し、縮小には大きな比率を使用する (縮小された比率は小さくなります)
- if( ($ratio_w < 1 && $ratio_h < 1 ) || ($ratio_w > 1 && $ratio_h > 1))
- {
- if($ratio_w < $ratio_h)
- {
- $ratio = $ratio_h ; // ケース 1、幅の比率は高さ方向、高さの比率標準に従ってトリミングするか、ズームインします
- }else {
- $ratio = $ratio_w ;
- }
- // アスペクト比がターゲット要件をちょうど満たす中間一時画像を定義します
- $inter_w=(int)( $new_width / $ratio);
- $inter_h=(int) ($new_height / $ratio);
- $inter_img=imagecreatetruecolor($inter_w , $inter_h);
- imagecopy($inter_img, $src_img, 0,0,0, 0,$inter_w,$inter_h) ;
- // ターゲット画像のサイズとして最大辺の長さを持つ一時画像を生成します $ratio
- // 新しい画像を定義します
- $new_img=imagecreatetruecolor($new_width,$new_height);
- imagecopyresampled($new_img,$ inter_img,0,0,0,0,$new_width,$new_height,$inter_w,$inter_h);
- //imagejpeg($new_img, $dst_file,100) // 画像を保存します
- }
- // end if 1
- // 2 対象画像の片側が元の画像より大きく、片側が元の画像より小さい まず通常の画像を拡大してからトリミングします
- //if( ($ rate_w < 1 && $ratio_h > 1) || ($ratio_w > ;1 && $ratio_h <1) )
- $ratio=$ratio_h>$ratio_w?比率が大きい方の値
- //中央に大きな画像を定義し、その画像の高さまたは幅を対象画像と同じにし、元の画像を拡大します
- $inter_w=(int)($w * $ratio) ;
- $inter_h=(int) ($h * $ratio);
-
- $inter_img=imagecreatetruecolor ($inter_w , $inter_h);
- //元の画像をスケーリング後にトリミングします
- imagecopyresampled($inter_img,$src_img,0 ,0,0,0,$inter_w,$inter_h,$w,$h);
- // 新しい画像を定義します
- $new_img=imagecreatetruecolor($new_width,$new_height);
- imagecopy($new_img, $inter_img, 0 ,0,0,0,$new_width,$new_height);
- }
- imagejpeg($new_img , $dst_file,100); //ストレージ画像
- }
-
- $filename = "110.jpg";元の画像
- $fileto="120.jpg";//スクリーンショットを撮った後に保存するパス
- $new_w =300;//幅を設定
- $new_h=350; //高さを設定
- my_image_resize($filename,$; fileto,$new_w,$new_h);
- ?>
-
-
-
コードをコピー
|
変形なし、PHP