您好,登錄后才能下訂單哦!
這篇文章主要介紹了微信JSSDK怎么實現打開攝像頭拍照再將相片保存到服務器功能,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
在微信端打開手機攝像頭拍照,將拍照圖片保存到服務器上需要使用到微信的JSSDK接口,主要使用到了拍照或從手機相冊中選圖接口(chooseImage),上傳圖片接口(uploadImage)
一:引入微信js
<script src="http://res2.wx.qq.com/open/js/jweixin-1.4.0.js "></script>
二:通過config接口注入權限驗證配置
wx.config(<?php echo Yii::$app->wechat->js->config([ 'chooseImage', 'uploadImage', 'downloadImage' ]) ?> );
三:微信端拍照接口
wx.chooseImage({ count: 1, // 默認9 sizeType: ['original', 'compressed'], // 可以指定是原圖還是壓縮圖,默認二者都有 sourceType: ['album', 'camera'], // 可以指定來源是相冊還是相機,默認二者都有 success: function (res) { var localIds = res.localIds; // 返回選定照片的本地ID列表,localId可以作為img標簽的src屬性顯示圖片 } });
四:將照片上傳到微信服務器接口
wx.uploadImage({ localId: localIds, // 需要上傳的圖片的本地ID,由chooseImage接口獲得 isShowProgressTips: 1, // 默認為1,顯示進度提示 success: function (res) { var serverId = res.serverId; // 返回圖片的服務器端ID }, fail: function() { //上傳圖片到微信服務器失敗 return false; } });
五:將微信服務器的圖片下載到本地服務器
前端:
//url表示php接口地址 //serverId表示圖片的服務器端ID $.post(url, {'media_id':serverId}, function(data) { if (data.type == 'success') { //上傳成功 } else { //上傳失敗 } });
php(接口)
public function actionUpload() { Yii::$app->response->format = Response::FORMAT_JSON; $request = Yii::$app->request; $mediaId = $request->post('media_id'); if (empty($mediaId)) { return [ 'type' => 'error', 'message' => '參數錯誤!' ]; } //臨時素材 $temporary = Yii::$app->wechat->material_temporary; //創建服務器目錄 $path = 'wechat/' . date('Ymd',time()) . '/'; $fullPath = Yii::getAlias('@webroot') . '/' . $path; if (!is_dir($fullPath)) { FileHelper::createDirectory($fullPath); } //設置圖片名稱 $fileName = Yii::$app->getSecurity()->generateRandomString() . '-' . date('His',time()); //將服務器端的臨時素材下載到本地服務器 $temporary->download($mediaId, $fullPath, $fileName); return [ 'type' => 'success', 'url' => $path . $fileName . '.jpg', ]; }
前端代碼整合
<!--引入微信js--> <script src="http://res2.wx.qq.com/open/js/jweixin-1.4.0.js "></script> <button class="btn">點擊</button> <img id="imgTarget" src="" alt=""> <?php $url = \yii\helpers\Url::to(['/wechat/upload']); $wxConfig = Yii::$app->wechat->js->config([ 'chooseImage', 'uploadImage', 'downloadImage' ]); $JS = <<<JS //注入權限驗證配置 wx.config( {$wxConfig} ); $('.btn').click(function () { wx.ready(function(){ wx.chooseImage({ count: 1, // 默認9 sizeType: ['original', 'compressed'], // 可以指定是原圖還是壓縮圖,默認二者都有 sourceType: ['album', 'camera'], // 可以指定來源是相冊還是相機,默認二者都有 success: function (res) { var localIds = res.localIds; // 返回選定照片的本地ID列表,localId可以作為img標簽的src屬性顯示圖片 uploadImage(localIds.toString()) } }); }) }); /** * 上傳圖片到微信服務器 */ function uploadImage(localIds) { wx.uploadImage({ localId: localIds, // 需要上傳的圖片的本地ID,由chooseImage接口獲得 isShowProgressTips: 1, // 默認為1,顯示進度提示 success: function (res) { var serverId = res.serverId; // 返回圖片的服務器端ID downloadImage(serverId.toString()); }, fail: function() { //上傳圖片到微信服務器失敗 alert('上傳圖片到微信服務器失敗'); return false; } }); } /** * 將微信服務端的圖片下載到本地服務器 */ function downloadImage(serverId) { //url表示php接口地址 //serverId表示圖片的服務器端ID $.post(url, {'media_id':serverId}, function(data) { if (data.type == 'success') { //上傳成功 alert(data.url); } else { //上傳失敗 alert(data.message) } }); } JS; $this->registerJs($JS); ?>
根據如上代碼就可以實現微信端打開攝像頭拍照再將相片保存到服務器功能
感謝你能夠認真閱讀完這篇文章,希望小編分享的“微信JSSDK怎么實現打開攝像頭拍照再將相片保存到服務器功能”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。