微信圖片上傳,遇到一個神奇的jgp

微信圖片上傳,獲取圖片base64遇到一個神奇的   jgp微信

 

var imgFn = function (event) {
            event.preventDefault();
            var id = '#'+$(this).attr('id');
            wx.chooseImage({
                count: 1, // 默認9
                sizeType: ['compressed'], // 'original', 能夠指定是原圖仍是壓縮圖,默認兩者都有
                sourceType: ['camera'], // 能夠指定來源是相冊仍是相機,默認兩者都有
                success: function (res) {
                    wx.getLocalImgData({
                        localId: res.localIds[0], // 圖片的localID
                        success: function (res) {

                            var imgsrc = res.localData;
                             if (navigator.userAgent.match(/iphone/i)) {
                                 // ihpone 的res.localData,多了'data:image/jgp;base64,'
                    // jgp,jgp,jgp,這是什麼鬼,
                    // 爲何不是jpg麼
}else{ imgsrc = 'data:image/jpg;base64,'+ imgsrc } $('#'+ id.split('_')[1] +'img').attr('src',imgsrc); selectFileImage(id); } }); } }); }; // 事件綁定 document.querySelector('#Photo_A').onclick = imgFn; document.querySelector('#Photo_B').onclick = imgFn; document.querySelector('#Photo_C').onclick = imgFn;

 

jgp,jpg,傻傻分不清楚。。。iphone

相關文章
相關標籤/搜索