程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php生成縮略圖示例代碼分享

php生成縮略圖示例代碼分享

編輯:關於PHP編程

    分享一個利用php的GD庫生成縮略圖的例子,大家參考使用吧

    代碼如下:

    <form method="post" action="suo_do.php" enctype="multipart/form-data">   

    <input type="file" name="pic" />   

    <input type="submit" value="上傳1" />   

    </form>   

    <?php   

    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<$h){   

    $height=300;   

    $width=$height/$h*$w;   

    }else{   

    $width=300;   

    $height=300;   

    } www.jbxue.com  

    //創建空白新圖片   

    $newimage=imagecreatetruecolor($width, $height);   

    //copy源圖片內容 copy新圖片   

    imagecopyresized($newimage, $image, 0,0, 0,0, $width, $height, $w, $h);   

    $filename="upload/s_".$file;   

    imagejpeg($newimage,$filename);   

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved