用小程序调用 wx.chooseImage 拍照,现在无法拍完照立刻编辑了吗?
我想拍完照片之后,可以编辑(在照片上写一些文字之类的东西)
这是代码 (11月6号之前还可以编辑的)
// 选择图片 chooseImage: function (e) { var that = this ; const files = that.data.taskRelated.files if (files.length >= 10 ) { wx.showToast({ title: '最多能上传10张图片' , icon: 'none' , duration: 2000 }) return } wx.chooseImage({ sizeType: [ 'compressed' ], // 可以指定是原图还是压缩图,默认二者都有 sourceType: [ 'camera' ], // 可以指定来源是相册还是相机,默认二者都有 count: 1 , success: function (res) { // wx.showLoading({ // title: '生成水印并保存中', // }) const path = res.tempFilePaths[ 0 ] that.setData({ 'taskRelated.files' : files.concat(path) }); }, fail: function (err) { console.log(err) wx.showToast({ title: '获取照相机失败' , icon: 'none' }) } }) }, |
这是拍完照片的界面