客户端上载的页面:
-------------------- upload.htm ---------------------
zuojiankuohaophpcnform 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);
}
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");
?>
OK3W图片头条系统说明 1:此程序较为适合展示类网站使用,适合首页略缩图更新不太频繁的网站使用,因为添加首页略缩图的时候手工操作的过程比较多,较为繁琐。 2:本次优化编辑器的部分,使编辑器加载的时候更加快速一些。 3:在编辑后院放置3套编辑器,分别是“内页文章编辑器”,“首页略缩图编辑器”,“列表页图片编辑器”,使得操作的时候清晰明了。 4:重要重要重要,要想在首页显示某篇文章略缩图,需
63
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号