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 중국어 웹사이트의 기타 관련 기사를 참조하세요!