PHP에서 업로드된 이미지의 크기를 수정하는 방법

墨辰丷
풀어 주다: 2023-03-31 15:46:01
원래의
3155명이 탐색했습니다.

이 글에서는 주로 PHP에서 업로드된 이미지의 크기를 변경하는 방법을 소개합니다. 이는 PHP에서 이미지를 조작하는 기술과 관련되어 있어 도움이 필요한 친구들이 참고할 수 있습니다. PHP에서 업로드된 이미지의 크기를 변경하는 방법입니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.

<?php
// This is the temporary file created by PHP
$uploadedfile = $_FILES[&#39;uploadfile&#39;][&#39;tmp_name&#39;];
// Create an Image from it so we can do the resize
$src = imagecreatefromjpeg($uploadedfile);
// Capture the original size of the uploaded image
list($width,$height)=getimagesize($uploadedfile);
// For our purposes, I have resized the image to be
// 600 pixels wide, and maintain the original aspect
// ratio. This prevents the image from being "stretched"
// or "squashed". If you prefer some max width other than
// 600, simply change the $newwidth variable
$newwidth=600;
$newheight=($height/$width)*600;
$tmp=imagecreatetruecolor($newwidth,$newheight);
// this line actually does the image resizing, copying from the original
// image into the $tmp image
imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
// now write the resized image to disk. I have assumed that you want the
// resized, uploaded image file to reside in the ./images subdirectory.
$filename = "images/". $_FILES[&#39;uploadfile&#39;][&#39;name&#39;];
imagejpeg($tmp,$filename,100);
imagedestroy($src);
imagedestroy($tmp);
// NOTE: PHP will clean up the temp file it created when the request
// has completed.
?>
로그인 후 복사

요약

: 위 내용은 이 글의 전체 내용이므로, 모든 분들의 학습에 도움이 되기를 바랍니다.

관련 권장 사항:

파일 저장을 통한 PHP 캐싱 기술

이미지 파일 업로드를 위한 PHP 기능에 대한 자세한 설명

파일 읽기, 편집 및 저장을 위한 PHP 작업

위 내용은 PHP에서 업로드된 이미지의 크기를 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿