> 백엔드 개발 > PHP 튜토리얼 > 썸네일 생성 PHP 프로그램

썸네일 생성 PHP 프로그램

高洛峰
풀어 주다: 2023-03-02 20:30:01
원래의
1052명이 탐색했습니다.

클라이언트가 업로드한 페이지:

---------------------------- upload.htm ------ ------ ---------


method="post" action="upload.php ">

업로드 파일 이름을 선택하거나 입력하세요:



------------------- -- upload.php -- ------------------

if(empty($upfile)){

print("파일이 전송되지 않았습니다!n파일이 업로드되지 않았습니다!");

}

$image_path=$upfile; @$image_info=getimagesize($ image_path);

if($image_info[2]==2)

{@$image2=imagecreatefromjpeg($image_path)

}

else if($image_info[2]==1){

@$image2=imagecreatefromgif($image_path)

}

else

if (비어 있음($image2))

$image2_x=imagesx($image2)

$image2_y=imagesy($image2)

if($image2_x==$ image2_y){

$x=150;

$y=0

} else if($image2_x> ;$image2_y){

$x=150;

$y=intval(150*$image2_y/$image2_x)

}; {

$y=150;

$x=intval(150*$image2_x/$image2_y)

$image1=imagecreate( $x,$y);

imagecopyreised($image1,$image2,0,0,0,0,$x,$y,$image2_x,$image2_y)

imagegif( $image1,"new.gif")

?>

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