이 글은 주로 서버 측의 이미지 크기 조정에 대한 PHP 구현을 소개합니다. 관심 있는 친구들이 참고하면 도움이 될 것입니다.
이 문서의 예에서는 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는 서버 측에서 이미지 크기 조정을 구현합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!