php修改上傳圖片大小的方法:先開啟腳本檔案;然後使用getimagesize函數取得圖片尺寸;最後透過imagecreatetruecolor等函數方法修改圖片大小即可。
推薦:《PHP影片教學》
PHP修改圖片大小的實作方法
主要透過imagecreatetruecolor實現。
$filename = "./QR/$id.jpg"; $percent = 0.4; list($width, $height) = getimagesize($filename); $new_width = $width * $percent; $new_height = $height * $percent; $image_p = imagecreatetruecolor($new_width, $new_height); $image = imagecreatefromjpeg($filename); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); imagejpeg($image_p,'./images/thumb/'.$id.'.jpg');
filename為檔案名稱;
percent為縮小比例;
imagejpeg為輸出儲存圖片。
以上是php如何修改上傳圖片大小的詳細內容。更多資訊請關注PHP中文網其他相關文章!