> 백엔드 개발 > PHP 튜토리얼 > 서버 side_php 기술에서 이미지 크기를 조정하는 PHP 방법

서버 side_php 기술에서 이미지 크기를 조정하는 PHP 방법

WBOY
풀어 주다: 2016-05-16 20:13:49
원래의
1091명이 탐색했습니다.

이 기사의 예에서는 PHP의 서버 측에서 이미지 크기를 조정하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.

서버 측에서 이미지 크기를 조정하는 것은 브라우저에서 처리하는 것보다 많은 장점이 있습니다.
이 문서에서는 PHP가 서버 측에서 이미지 크기를 조정하는 방법을 설명합니다.

코드는 두 부분으로 구성됩니다.

① imageResizer()를 사용하여 이미지를 처리합니다
② loadimage()는 더 간단한 형식으로 이미지 URL을 삽입합니다

<&#63;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&#63;url=', urlencode($url) ,
  '&w=',$width,
  '&h=',$height;
 }
&#63;>

로그인 후 복사

사용법:

//Above code would be in a file called image.php.
//Images would be displayed like this:
<img src="<&#63;php loadImage('image.jpg', 50, 50) &#63;>" alt="" />

로그인 후 복사

이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿