您好,登錄后才能下訂單哦!
這篇文章主要介紹“php怎么實(shí)現(xiàn)圖片轉(zhuǎn)base64格式并上傳”,在日常操作中,相信很多人在php怎么實(shí)現(xiàn)圖片轉(zhuǎn)base64格式并上傳問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”php怎么實(shí)現(xiàn)圖片轉(zhuǎn)base64格式并上傳”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
php實(shí)現(xiàn)圖片轉(zhuǎn)base64格式并上傳的方法:1、將圖片轉(zhuǎn)化為base64格式;2、通過(guò)ajax將圖片上傳到服務(wù)器端;3、在服務(wù)器端重新轉(zhuǎn)化圖片格式并進(jìn)行儲(chǔ)存即可。
本文操作環(huán)境:windows10系統(tǒng)、php 7、thinkpad t480電腦。
在實(shí)際開(kāi)發(fā)項(xiàng)目的過(guò)程中處理圖片上傳是一定會(huì)遇到的,例如使用thinkphp的小伙伴一定很熟悉import("@.ORG.UploadFile");的上傳方式吧。今天我們就來(lái)講一講使用html base 64上傳圖片的方法,一起來(lái)看看吧。
主要是用到html5 FileReader的接口,既然是html5的,所支持的瀏覽器我就不多說(shuō)啦。
可以大概的講一下思路,其實(shí)也挺簡(jiǎn)單。選擇了圖片之后,js會(huì)先把已選的圖片轉(zhuǎn)化為base64格式,然后通過(guò)ajax上傳到服務(wù)器端,服務(wù)器端再轉(zhuǎn)化為圖片,進(jìn)行儲(chǔ)存的一個(gè)過(guò)程。
咱們先看看前端的代碼。
html部分
<input type="file" id="imagesfile">
js部分
$("#imagesfile").change(function (){ var file = this.files[0]; //用size屬性判斷文件大小不能超過(guò)5M ,前端直接判斷的好處,免去服務(wù)器的壓力。 if( file.size > 5*1024*1024 ){ alert( "你上傳的文件太大了!" ) } //好東西來(lái)了 var reader=new FileReader(); reader.onload = function(){ // 通過(guò) reader.result 來(lái)訪問(wèn)生成的 base64 DataURL var base64 = reader.result; //打印到控制臺(tái),按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('上傳超時(shí)啦,再試試'); } }); }
其實(shí)前端的代碼也并不復(fù)雜,主要是使用了new FileReader();的接口來(lái)轉(zhuǎn)化圖片,new FileReader();還有其他的接口,想了解更多的接口使用的童鞋,自行谷歌搜索new FileReader();。
接下來(lái),那就是服務(wù)器端的代碼了,上面的demo,是用thinkphp為框架編寫(xiě)的,但其他框架也基本通用的。
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'] = '請(qǐng)選擇要上傳的圖片'; return $ary; }
以上就是PHP代碼,原理也很簡(jiǎn)單,拿到接口上傳的base64,然后再轉(zhuǎn)為圖片再儲(chǔ)存。
使用的是thinkphp 3.2,無(wú)需數(shù)據(jù)庫(kù),PHP環(huán)境直接運(yùn)行即可。
php目錄路徑為:
?Application\Home\Controller\Base64Controller.class.php
html目錄路徑為:
Application\Home\View\Base64\imagesupload.html
到此,關(guān)于“php怎么實(shí)現(xiàn)圖片轉(zhuǎn)base64格式并上傳”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。