下一篇 » « 上一篇

缩略图生成的php程序

作者:    时间:2008-01-22    来源:    点击:4905    本文共1篇文章 字体:[ ]
标签:缩略图

缩略图生成的php程序

客户端上载的页面:

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

<form enctype="multipart/form-data"

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

<input type="hidden" name="MAX_FILE_SIZE" value="10240000000">请选择或输入上传文件名:<input name="upfile" type="file">

<input type="submit" value="开始上传">

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

<?
if(empty($upfile)){

print("No file was transfered!\n无文件上传!");

exit;

}

$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);

www.444p.com



}

else

if(empty($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);

}

else{

$y=150;

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

}

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

imagecopyresized($image1,$image2,0,0,0,0,$x,$y,$image2_x,$image2_y);

imagegif($image1,"new.gif");

?>
责任编辑:semirock
发表评论
密码: (游客不需要密码)
记住我【Alt+S 或 Ctrl+Enter 快速提交】

搜索工具


热门搜索: [html][html][else][MYsql][mysql][调用][date][print][配置][配置]

《PHP精通》点击排行