이 글에서는 주로 PHP에서 서버 측에서 이미지 크기를 조정하는 방법을 소개합니다. 이미지를 조작하기 위한 imageResizer 및 loadimage 관련 기술을 분석한 예시입니다. 필요한 친구들이 참고할 수 있습니다
이 글에서는 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!