|
@@ -14,7 +14,6 @@ Page({
|
|
|
IMG_W: '',
|
|
|
IMG_H: '',
|
|
|
clipImage: '',
|
|
|
- left: '',
|
|
|
top: '',
|
|
|
screenW: '',
|
|
|
screenH: ''
|
|
@@ -22,7 +21,6 @@ Page({
|
|
|
//拖拽事件
|
|
|
move: function ({ detail }) {
|
|
|
this.setData({
|
|
|
- left: detail.x * 2,
|
|
|
top: detail.y * 2
|
|
|
})
|
|
|
},
|
|
@@ -32,7 +30,7 @@ Page({
|
|
|
title: '图片生成中...',
|
|
|
})
|
|
|
const img_ratio = this.data.img_ratio;
|
|
|
- const canvasW = (this.data.screenW / this.data.cropperW) * this.data.IMG_W
|
|
|
+ const canvasW = this.data.IMG_W;
|
|
|
const canvasH = (this.data.screenH / this.data.cropperH) * this.data.IMG_H
|
|
|
const canvasL = 0;
|
|
|
const canvasT = (this.data.top / this.data.cropperH) * this.data.IMG_H
|
|
@@ -46,10 +44,8 @@ Page({
|
|
|
ctx.drawImage(this.data.imageUrl, canvasL, canvasT, canvasW, canvasH, 0, 0, this.data.screenW / 2, this.data.screenH / 2);
|
|
|
|
|
|
} else {
|
|
|
- //如果图片比较窄两边留白,留白距离
|
|
|
- const liubaiLeft = (this.data.screenW / 2 - this.data.cropperW / 2) /2;
|
|
|
//保存图片分别是图片地址,canvas绘制距离左边距离,距离上边距离,截取原图片宽度,原图片高度,图片在canvas上的左位置,上位置,生成图片的宽,生成图片的高;
|
|
|
- ctx.drawImage(this.data.imageUrl, canvasL, canvasT, canvasW, canvasH, liubaiLeft, 0, this.data.cropperW, this.data.screenH * img_ratio);
|
|
|
+ ctx.drawImage(this.data.imageUrl, canvasL, canvasT, canvasW, canvasH, 0, 0, this.data.screenW / 2, this.data.screenH / 1.2);
|
|
|
}
|
|
|
ctx.draw(true, () => {
|
|
|
// 获取画布要裁剪的位置和宽度
|
|
@@ -57,9 +53,9 @@ Page({
|
|
|
x: 0,
|
|
|
y: 0,
|
|
|
width: this.data.screenW / 2,
|
|
|
- height: this.data.screenH / 2,
|
|
|
+ height: this.data.screenH / 1.2,
|
|
|
destWidth: this.data.screenW / 2,
|
|
|
- destHeight: this.data.screenH / 2,
|
|
|
+ destHeight: this.data.screenH / 1.2,
|
|
|
quality: 0.5,
|
|
|
canvasId: 'myCanvas',
|
|
|
success: (res) => {
|
|
@@ -68,7 +64,6 @@ Page({
|
|
|
this.setData({
|
|
|
clipImage: res.tempFilePath
|
|
|
})
|
|
|
-
|
|
|
//上传文件
|
|
|
wx.uploadFile({
|
|
|
url: HOST + 'wx/file/upload',
|
|
@@ -102,7 +97,8 @@ Page({
|
|
|
content: '上传图片失败'
|
|
|
})
|
|
|
}
|
|
|
- });
|
|
|
+ });
|
|
|
+
|
|
|
//成功获得地址的地方
|
|
|
// wx.previewImage({
|
|
|
// current: '', // 当前显示图片的http链接
|
|
@@ -121,10 +117,8 @@ Page({
|
|
|
const screenW = wx.getSystemInfoSync().windowWidth * 2;
|
|
|
//h获取剪裁框的高度,按照16:9来计算高度
|
|
|
const screenH = screenW / 16 * 9;
|
|
|
- console.log('剪裁框宽高',screenW,screenH);
|
|
|
this.setData({
|
|
|
- screenW,
|
|
|
- screenH
|
|
|
+ screenW
|
|
|
})
|
|
|
const imageUrl = options.imageUrl;
|
|
|
this.setData({
|
|
@@ -149,12 +143,14 @@ Page({
|
|
|
this.setData({
|
|
|
cropperW: 750,
|
|
|
cropperH: 750 / img_ratio,
|
|
|
+ screenH: 750 / 16 * 9
|
|
|
})
|
|
|
} else {
|
|
|
//竖着显示
|
|
|
this.setData({
|
|
|
cropperW: 750 * img_ratio,
|
|
|
- cropperH: 750
|
|
|
+ cropperH: 750,
|
|
|
+ screenH: (750 * img_ratio) / 16 * 9
|
|
|
})
|
|
|
}
|
|
|
}
|