php動態產生縮圖並輸出顯示的方法
下面為你介紹了php動態產生縮圖並輸出顯示的方法,涉及php操作圖片的相關技巧,非常具有實用價值,需要的朋友可以參考下
本文執行個體講述了php動態產生縮圖並輸出顯示的方法。分享給大家供大家參考。具體如下:
調用方法:
?
此代碼可以為大圖片動態產生縮圖顯示,圖片在記憶體中產生,不在硬碟產生真實檔案
thumbs.php檔案如下:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
$filename= $_GET['filename']; $width = $_GET['width']; $height = $_GET['height']; $path="http://localhost/images/"; //finish in "/" // Content type header('Content-type: image/jpeg'); // Get new dimensions list($width_orig, $height_orig) = getimagesize($path.$filename); if ($width && ($width_orig < $height_orig)) { $width = ($height / $height_orig) * $width_orig; } else { $height = ($width / $width_orig) * $height_orig; } // Resample $image_p = imagecreatetruecolor($width, $height); $image = imagecreatefromjpeg($path.$filename); imagecopyresampled($image_p,$image,0,0,0,0,$width,$height,$width_orig,$height_orig); // Output imagejpeg($image_p, null, 100); // Imagedestroy imagedestroy ($image_p); ?> |
希望本文所述對大家的php程式設計有所協助。
http://www.bkjia.com/PHPjc/987107.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/987107.htmlTechArticlephp動態產生縮圖並輸出顯示的方法 下面為你介紹了php動態產生縮圖並輸出顯示的方法,涉及php操作圖片的相關技巧,非常具有實用價值...