咱們在開發系統時,處理圖片上傳是不可避免的,例如使用thinkphp的確定很熟悉
import("@.ORG.UploadFile");
的上傳方式,今天咱們來說一個使用html5 base64上傳圖片的方法。
文章首發於藍鍋鍋博客:http://lanchenglv.com/article...php
主要是用到html5 FileReader的接口,既然是html5的,所支持的瀏覽器我就很少說啦,老生常談的問題了,遠離IE,珍惜生命。
先扔個demo出來給大夥體驗體驗哈。html
http://t.lanchenglv.com/lan/i...前端
PS:主要給大夥體驗的,別當網盤儲存圖片哈,按期自動刪除圖片的。
能夠大概的講一下思路,其實也挺簡單。選擇了圖片以後,js會先把已選的圖片轉化爲base64格式,而後經過ajax上傳到服務器端,服務器端再轉化爲圖片,進行儲存的一個過程。
我們先看看前端的代碼。html5
html部分git
<input type="file" id="imagesfile">
js部分github
$("#imagesfile").change(function (){ var file = this.files[0]; //用size屬性判斷文件大小不能超過5M ,前端直接判斷的好處,免去服務器的壓力。 if( file.size > 5*1024*1024 ){ alert( "你上傳的文件太大了!" ) } //好東西來了 var reader=new FileReader(); reader.onload = function(){ // 經過 reader.result 來訪問生成的 base64 DataURL var base64 = reader.result; //打印到控制檯,按F12查看 console.log(base64); //上傳圖片 base64_uploading(base64); } reader.readAsDataURL(file); }); //AJAX上傳base64 function base64_uploading(base64Data){ $.ajax({ type: 'POST', url: "上傳接口路徑", data: { 'base64': base64Data }, dataType: 'json', timeout: 50000, success: function(data){ console.log(data); }, complete:function() {}, error: function(xhr, type){ alert('上傳超時啦,再試試'); } }); }
其實前端的代碼也並不複雜,主要是使用了new FileReader();
的接口來轉化圖片,new FileReader();
還有其餘的接口,想了解更多的接口使用的童鞋,自行谷歌搜索new FileReader();
。
接下來,那就是服務器端的代碼了,上面的demo,是用thinkphp爲框架編寫的,但其餘框架也基本通用的。ajax
function base64imgsave($img){ //文件夾日期 $ymd = date("Ymd"); //圖片路徑地址 $basedir = 'upload/base64/'.$ymd.''; $fullpath = $basedir; if(!is_dir($fullpath)){ mkdir($fullpath,0777,true); } $types = empty($types)? array('jpg', 'gif', 'png', 'jpeg'):$types; $img = str_replace(array('_','-'), array('/','+'), $img); $b64img = substr($img, 0,100); if(preg_match('/^(data:\s*image\/(\w+);base64,)/', $b64img, $matches)){ $type = $matches[2]; if(!in_array($type, $types)){ return array('status'=>1,'info'=>'圖片格式不正確,只支持 jpg、gif、png、jpeg哦!','url'=>''); } $img = str_replace($matches[1], '', $img); $img = base64_decode($img); $photo = '/'.md5(date('YmdHis').rand(1000, 9999)).'.'.$type; file_put_contents($fullpath.$photo, $img); $ary['status'] = 1; $ary['info'] = '保存圖片成功'; $ary['url'] = $basedir.$photo; return $ary; } $ary['status'] = 0; $ary['info'] = '請選擇要上傳的圖片'; return $ary; }
以上就是PHP代碼,原理也很簡單,拿到接口上傳的base64,而後再轉爲圖片再儲存。thinkphp
建了一個github庫,須要源碼體驗的童鞋能夠clone來體驗體驗。
https://github.com/bluefox168...數據庫
使用的是thinkphp 3.2,無需數據庫,PHP環境直接運行便可。
php目錄路徑爲:json
Application\Home\Controller\Base64Controller.class.php
html目錄路徑爲:
Application\Home\View\Base64\imagesupload.html
文章首發於藍鍋鍋博客,歡迎交流,共同進步。
http://lanchenglv.com/article...