php實現在伺服器端調整圖片大小的方法_php技巧

來源:互聯網
上載者:User

本文執行個體講述了php實現在伺服器端調整圖片大小的方法。分享給大家供大家參考。具體分析如下:

在伺服器端完成圖片大小的調整,會比在瀏覽器的處理有很多的好處。
本文介紹了PHP如何在伺服器端調整圖片大小。

程式碼封裝括兩部分:

① imageResizer() is used to process the image
② loadimage() inserts the image url in a simpler format

<?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程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.