php缩图代码是什么,php生成缩略图示例代码分享(使用gd库实现)
header("content-type:text/html;charset=gbk");
ini_set("date.timezone","Asia/chong");
//判斷文件是否為空
if(empty($_FILES)){
echo"上傳文件過大";
exit;
}
//判斷文件上傳是否有錯誤
if($_FILES['pic']['error']){
echo "上傳文件";
exit;
}
//判斷文件類型是否非法獲取文件后綴
$allowtype=array("jpg","png","jpeg","gif");
$a=explode('.',$_FILES['pic']['name']);
$index=count($a)-1;
$ex=strtolower($a[$index]);
if(!in_array($ex,$allowtype)){
echo "上傳文件非法";
exit;
}
$file=date('YmdHis').rand().".".$ex;
$src=$_FILES['pic']['tmp_name'];
$des="upload/".$file;
$rs=move_uploaded_file($src,$des);
//縮略圖
//讀取已經上傳圖片
$image=imagecreatefromjpeg($des);
$a=getimagesize($des);
$w=$a[0];
$h=$a[1];
if($w>$h){
$width=300;
$height=$width/$w*$h;
}else if($w
$height=300;
$width=$height/$h*$w;
}else{
$width=300;
$height=300;
} www.jb51.net
//創建空白新圖片
$newimage=imagecreatetruecolor($width, $height);
//copy源圖片內容 copy新圖片
imagecopyresized($newimage, $image, 0,0, 0,0, $width, $height, $w, $h);
$filename="upload/s_".$file;
imagejpeg($newimage,$filename);
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀總結
以上是生活随笔為你收集整理的php缩图代码是什么,php生成缩略图示例代码分享(使用gd库实现)的全部內容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: php5.1 facade,php设计模
- 下一篇: php wap页下拉刷新代码,js实现的
