canvasImg() {
let that = this;
var res = wx.getSystemInfoSync()
var rpx = res.windowWidth / 375
console.log(rpx)
that.setData({
rpx: res.windowWidth / 375
})
const ctx = wx.createCanvasContext(‘myCanvas‘);
ctx.save(); // 先保存状态 已便于画完圆再用
ctx.drawImage("/image/ma.png", 46 * rpx, 0* rpx, 280* rpx, 280 * rpx);
that.setData({
canvas_hidden: false
})
ctx.draw(true, function () {
setTimeout(function () {
wx.hideLoading()
// that.setData({
// canvas_hidden: false
// })
}, 1000)
});
setTimeout(function () {
// that.saveImg()
}, 1100)
// ctx.draw();
},
// 多行文本
dealWords: function (options) {
options.ctx.setFontSize(options.fontSize); //设置字体大小
var allRow = Math.ceil(options.ctx.measureText(options.word).width / options.maxWidth); //实际总共能分多少行
var count = allRow >= options.maxLine ? options.maxLine : allRow; //实际能分多少行与设置的最大显示行数比,谁小就用谁做循环次数
var endPos = 0; //当前字符串的截断点
for (var j = 0; j < count; j++) {
var nowStr = options.word.slice(endPos); //当前剩余的字符串
var rowWid = 0; //每一行当前宽度
if (options.ctx.measureText(nowStr).width > options.maxWidth) { //如果当前的字符串宽度大于最大宽度,然后开始截取
for (var m = 0; m < nowStr.length; m++) {
rowWid += options.ctx.measureText(nowStr[m]).width; //当前字符串总宽度
if (rowWid > options.maxWidth) {
if (j === options.maxLine - 1) { //如果是最后一行
options.ctx.fillText(nowStr.slice(0, m - 1) + ‘...‘, options.x, options.y + (j + 1) * 18); //(j+1)*18这是每一行的高度
} else {
options.ctx.fillText(nowStr.slice(0, m), options.x, options.y + (j + 1) * 18);
}
endPos += m; //下次截断点
break;
}
}
} else { //如果当前的字符串宽度小于最大宽度就直接输出
options.ctx.fillText(nowStr.slice(0), options.x, options.y + (j + 1) * 18);
}
}
},
/**
* 制作圆角
* @param {CanvasContext} ctx canvas上下文
* @param {number} x 圆角矩形选区的左上角 x坐标
* @param {number} y 圆角矩形选区的左上角 y坐标
* @param {number} w 圆角矩形选区的宽度
* @param {number} h 圆角矩形选区的高度
* @param {number} r 圆角的半径
*/
roundRect(ctx, x, y, w, h, r) {
ctx.save();
// 开始绘制
ctx.beginPath()
// 因为边缘描边存在锯齿,最好指定使用 transparent 填充
// 这里是使用 fill 还是 stroke都可以,二选一即可
ctx.setFillStyle(‘#fff‘)
// ctx.setStrokeStyle(‘red‘)
// 左上角
ctx.arc(x + r, y + r, r, Math.PI, Math.PI * 1.5)
// border-top
ctx.moveTo(x + r, y)
ctx.lineTo(x + w - r, y)
ctx.lineTo(x + w, y + r)
// 右上角
ctx.arc(x + w - r, y + r, r, Math.PI * 1.5, Math.PI * 2)
// border-right
ctx.lineTo(x + w, y + h - r)
ctx.lineTo(x + w - r, y + h)
// 右下角
ctx.arc(x + w - r, y + h - r, r, 0, Math.PI * 0.5)
// border-bottom
ctx.lineTo(x + r, y + h)
ctx.lineTo(x, y + h - r)
// 左下角
ctx.arc(x + r, y + h - r, r, Math.PI * 0.5, Math.PI)
// border-left
ctx.lineTo(x, y + r)
ctx.lineTo(x + r, y)
// 这里是使用 fill 还是 stroke都可以,二选一即可,但是需要与上面对应
ctx.fill()
// ctx.stroke()
ctx.closePath()
// 剪切
ctx.clip()
ctx.restore();
},
saveImg() {
let that = this;
var res = wx.getSystemInfoSync()
var rpx = res.windowWidth / 375
that.setData({
rpx: res.windowWidth / 375
})
wx.canvasToTempFilePath({
x: 0,
y: 0,
width: 375 * rpx, //画布宽高
height: 600 * rpx,
destWidth: 750 * rpx, //画布宽高*dpr 以iphone6为准
destHeight: 1200 * rpx, //放大2倍以上,解决保存的图片模糊的问题
canvasId: ‘myCanvas‘,
success: function (res) {
//console.log(res.tempFilePath) //生成的临时图片路径
wx.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
success: function (res) {
App.util._toast("您的分享海报已存入手机相册,赶快去分享给好友吧!")
},
fail: function (err) {
//console.log(err)
if (err.errMsg === "saveImageToPhotosAlbum:fail:auth denied" || err.errMsg === "saveImageToPhotosAlbum:fail auth deny" || err.errMsg === "saveImageToPhotosAlbum:fail authorize no response") {
// 这边微信做过调整,必须要在按钮中触发,因此需要在弹框回调中进行调用
wx.showModal({
title: ‘提示‘,
content: ‘需要您授权保存相册‘,
showCancel: false,
success: modalSuccess => {
wx.openSetting({
success(settingdata) {
// console.log("settingdata", settingdata)
if (settingdata.authSetting[‘scope.writePhotosAlbum‘]) {
wx.showModal({
title: ‘提示‘,
content: ‘授权成功,请重新生成海报‘,
showCancel: false,
})
} else {
wx.showModal({
title: ‘提示‘,
content: ‘获取权限失败,将无法保存到相册哦~‘,
showCancel: false,
})
}
},
fail(failData) {
//console.log("failData", failData)
},
complete(finishData) {
// console.log("finishData", finishData)
}
})
}
})
}
}
})
}
})
},