微信小程序圖片壓縮功能的實現方法 :1、在 wx.chooseImage 接口選擇相機圖片。2、在 wx.getImageInfo 接口獲取圖片信息。3、計算壓縮比例和最終圖片的長寬。4、創建 canvas 繪制最終圖片。5、在 wx.canvasToTempFilePath 接口將畫布內容導出為圖片并獲取圖片路徑。
具體操作步驟:
1、通過 wx.chooseImage 接口選擇相機圖片。
2、通過 wx.getImageInfo 接口獲取圖片信息(長寬,類型)。
3、 計算壓縮比例和最終圖片的長寬。
4、創建 canvas 繪圖上下文,繪制最終圖片。
5. 通過 wx.canvasToTempFilePath 接口將畫布內容導出為圖片并獲取圖片路徑。
代碼實現如下所示:
wxml 文件
<canvas canvas-id="canvas" style="width:{{cWidth}}px;height:{{cHeight}}px;position: absolute;left:-1000px;top:-1000px;"></canvas>
js 文件
data:{ cWidth: 0; cHeight : 0;}
data:{ cWidth: 0; cHeight : 0;}</pre>
<pre>
wx.chooseImage({
count: 1, // 默認9
sizeType: ['compressed'], // 指定只能為壓縮圖,首先進行一次默認壓縮
sourceType: ['album', 'camera'], // 可以指定來源是相冊還是相機,默認二者都有
success: function (photo) {
//-----返回選定照片的本地文件路徑列表,獲取照片信息-----------
wx.getImageInfo({
src: photo.tempFilePaths[0],
success: function(res){
//---------利用canvas壓縮圖片--------------
var ratio = 2;
var canvasWidth = res.width //圖片原始長寬
var canvasHeight = res.height
while (canvasWidth > 400 || canvasHeight > 400){// 保證寬高在400以內
canvasWidth = Math.trunc(res.width / ratio)
canvasHeight = Math.trunc(res.height / ratio)
ratio++;
}
that.setData({
cWidth: canvasWidth,
cHeight: canvasHeight
})
//----------繪制圖形并取出圖片路徑--------------
var ctx = wx.createCanvasContext('canvas')
ctx.drawImage(res.path, 0, 0, canvasWidth, canvasHeight)
ctx.draw(false, setTimeout(function(){
wx.canvasToTempFilePath({
canvasId: 'canvas',
destWidth: canvasWidth,
destHeight: canvasHeight,
success: function (res) {
console.log(res.tempFilePath)//最終圖片路徑
},
fail: function (res) {
console.log(res.errMsg)
}
})
},100)) //留一定的時間繪制canvas
fail: function(res){
console.log(res.errMsg)
},
})
}
})