php改變圖片大小的方法:1、使用函數【$xmax】,修改圖片最大寬度;2、使用函數【$ymax】,修改圖片最大高度;使用函數【$tmpname】上傳檔案到目錄。
php改變圖片大小的方法:
使用下列程式碼修改圖片大小或建立縮圖。
參數說明:
$filename
:檔案名稱。
$tmpname
:檔案路徑,如上傳中的暫存目錄。
$xmax
:修改後最大寬度。
$ymax
:修改後最大高度。
<?php // 重置图片文件大小 function resize_image($filename, $tmpname, $xmax, $ymax) { $ext = explode(".", $filename); $ext = $ext[count($ext)-1]; if($ext == "jpg" || $ext == "jpeg") $im = imagecreatefromjpeg($tmpname); elseif($ext == "png") $im = imagecreatefrompng($tmpname); elseif($ext == "gif") $im = imagecreatefromgif($tmpname); $x = imagesx($im); $y = imagesy($im); if($x <= $xmax && $y <= $ymax) return $im; if($x >= $y) { $newx = $xmax; $newy = $newx * $y / $x; } else { $newy = $ymax; $newx = $x / $y * $newy; } $im2 = imagecreatetruecolor($newx, $newy); imagecopyresized($im2, $im, 0, 0, 0, 0, floor($newx), floor($newy), $x, $y); return $im2; } ?>
相關學習推薦:php圖文教學
以上是php如何改變圖片大小的詳細內容。更多資訊請關注PHP中文網其他相關文章!