PHP言語を利用してサーバー側で画像サイズを調整する方法
PHPの処理定義関数:
<?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;
}
// 画像をリサンプリング
$image_p = imagecreatetruecolor($width, $height);
$image = imagecreatefromjpeg($url);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
// 画像を出力
imagejpeg($image_p, null, 100);
}
//POSTおよび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’]);
}
// 簡単なプロセス
function loadImage($url, $width, $height){
echo 'image.php?url=’, urlencode($url) ,
'&w=’,$width,
'&h=’,$height;
}
?>
定義関数を呼び出すサンプル
ファイル名img.php
//定義関数を呼び出す
<img src="<?php loadImage('image.jpg’, 50, 50) ?>" alt="" />