この記事ではサーバー側での画像サイズ調整のPHP実装を中心に紹介していますので、興味のある方は参考にしていただければ幸いです。
この記事の例では、PHP でサーバー側で画像サイズを調整する方法を説明します。具体的な分析は次のとおりです。
画像サイズの調整をサーバー側で完了すると、ブラウザで処理する場合に比べて多くの利点があります。
この記事では、PHP がサーバー側で画像のサイズを変更する方法を紹介します。
コードには 2 つの部分が含まれています:
① imageResizer() は画像を処理するために使用されます
②loadimage() はより単純な形式で画像 URL を挿入します
<?php function imageResizer($url, $width, $height) { header('Content-type: image/jpeg'); list($width_orig, $height_orig) = getimagesize($url); $ratio_orig = $width_orig/$height_orig; if ($width/$height > $ratio_orig) { $width = $height*$ratio_orig; } else { $height = $width/$ratio_orig; } // This resamples the image $image_p = imagecreatetruecolor($width, $height); $image = imagecreatefromjpeg($url); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig); // Output the image imagejpeg($image_p, null, 100); } //works with both POST and GET $method = $_SERVER['REQUEST_METHOD']; if ($method == 'GET') { imageResize($_GET['url'], $_GET['w'], $_GET['h']); } elseif ($method == 'POST') { imageResize($_POST['url'], $_POST['w'], $_POST['h']); } // makes the process simpler function loadImage($url, $width, $height){ echo 'image.php?url=', urlencode($url) , '&w=',$width, '&h=',$height; } ?>
使用法:
//Above code would be in a file called image.php. //Images would be displayed like this: <img src="<?php loadImage('image.jpg', 50, 50) ?>" alt="" />
要約: 以上がこの記事の全内容です。皆さんの学習に役立つことを願っています。
関連する推奨事項:
以上がPHPはサーバー側で画像サイズ調整を実装しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。