2***@qq.com
2***@qq.com
  • 发布:2024-07-31 09:47
  • 更新:2024-07-31 09:47
  • 阅读:209

app使用canvas绘制,导出jpg格式图片全黑

分类:uni-app

app使用canvas绘制,导出jpg格式图片全黑。

canvasToPath(width , height) {  
      const quality = getQuality(this.imgSize)  
      uni.canvasToTempFilePath(  
        {  
          canvasId: this.getCurrentUseCanvasInfo.canvasId,  
          quality: quality,  
          width:width ,  
          height:height,  
          destWidth: width,  
          destHeight: height,  
          fileType:'jpg',  
          success: (res)=> {  

            const tempFilePath = res.tempFilePath;  
            this.uploadImg(tempFilePath)  
          },  
          fail: (err) => {  

            console.log(err);  
          },  
        },  
      );  
    },

这是绘制出的图片,在ios手机,尺寸是1080 * 1440

2024-07-31 09:47 负责人:无 分享
已邀请:

要回复问题请先登录注册