array getimagesize ( string $filename [, array &$imageinfo ] ) 이미지 크기 가져오기
resource imagecreatetruecolor ( int $x_size , int $y_size ) 새 트루 컬러 이미지 만들기
resource imagecreatefromjpeg ( string $filename ) JPEG 파일 또는 URL 새 이미지 만들기
bool imagecopyreised ( Resource $dst_image , Resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h ) 이미지의 일부를 복사하고 크기를 조정합니다
bool imagejpeg ( Resource $image [, string $filename [, int $quality ]] ) 이미지를 브라우저 또는 JPEG 형식의 파일로 출력
코드 복사 코드는 다음과 같습니다.
/*
작성자: http://www.cnphp.info
*/
// 파일 및 확대/축소 크기
//$imgfile = 'smp.jpg ';
//$ 퍼센트 = 0.2;
header('콘텐츠 유형: image/jpeg')
list($width, $height) = getimagesize($imgfile); newwidth = $width * $percent;
$newheight = $height * $percent;
$thumb = ImageCreateTrueColor($newwidth,$newheight)
$source = imagecreatefromjpeg($imgfile); imagecopyreised($thumb, $source, 0, 0, 0, 0, $newheight, $width, $height)
imagejpeg($thumb)
?>
위 내용은 Phison-up10 대량생산 도구 v1.78.00의 내용을 포함하여 phison-up10 대량생산 도구 v1.78.00 php 썸네일 구현 함수 코드를 소개한 것입니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.