PHP プログラミングでは、画像が大きすぎて仕様が一貫していない場合がよくあります。モバイル デバイスで使用すると、表示効果が悪く、トラフィックが膨大になります。既存の画像ライブラリの最適化。画像はモバイル デバイスに適したサムネイルを生成するために一度処理され、元々クライアント側の JS によって行われた作業は、集中処理のために PHP の GD ライブラリを使用してサーバー側に転送されます。
要件、画像ソース、必要なサイズ:
- list($src_w,$src_h)=getimagesize($src_img); //元の画像サイズを取得します
- $dst_scale = $dst_h/$dst_w; //ターゲット画像のアスペクト比を取得します。 $src_scale = $src_h/$src_w; // 元の画像のアスペクト比
- if($src_scale>=$dst_scale)
- // 高すぎます
- $w = intval($src_w)
- $h = intval($ dst_scale) *$w);
- $x = 0;
- $y = ($src_h - $h)/3;
- else
- // 幅が広すぎます
- $h = intval($src_h); intval($h/$dst_scale);
- $x = ($src_w - $w)/2;
- $y = 0;
- // トリミング
- $source=imagecreatefromjpeg($src_img); ($w, $h);
- imagecopy($croped,$source,0,0,$x,$y,$src_w,$src_h);
- // スケール
- $scale = $dst_w/$w;ターゲット = imagecreatetruecolor($dst_w, $dst_h);
- $final_w = intval($w*$scale);
- imagecopyresampled($target,$croped,0,0 , 0,0,$final_w,$final_h,$w,$h);
- $timestamp = time();
- imagejpeg($target, "$timestamp.jpg");
- ?>
-
-
- コードをコピー
-
-
-
-
-
-
-
-
-
|