이 기사의 예에서는 PHP의 서버 측에서 이미지 크기를 조정하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
서버 측에서 이미지 크기를 조정하는 것은 브라우저에서 처리하는 것보다 많은 장점이 있습니다.
이 문서에서는 PHP가 서버 측에서 이미지 크기를 조정하는 방법을 설명합니다.
코드는 두 부분으로 구성됩니다.
① 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 프로그래밍 설계에 도움이 되기를 바랍니다.