收藏
回答

wx.compressImage压缩后宽高在安卓设备上不生效?

在ios上测试过是可以改变图片分辨率的,到了安卓这里就不行

uni.compressImage({

                            src: 'filePath',

                            quality: 100,

                            compressedWidth: '489px',

                            compressedHeight: '930px',

                            success: res => {

                                console.log(res.tempFilePath, res, 'file')

                                uni.uploadFile({

                                    url: config.OSS_DOMAIN,

                                    filePath: res.tempFilePath,

                                    name: 'file',

                                    formData: {

                                        'id': this.ids

                                    },

                                    success: (uploadFileRes) => {

                                        this.notice = ""

                                        clearTimeout(this.time)

                                        const data = JSON.parse(uploadFileRes.data)

                                        if (data.code === 200) {

                                            this.$emit('getPhoto', data.data.photo)

                                        } else {

                                            if (data.code === 1000) {

                                               

                                            }

                                            if (data.code === 3001) {

                                                this.apiMsg = data.msg

                                                this.count++

                                                this.takePhoto()

                                            }

                                        }

                                    }

                                });

                            }

                        })


回答关注问题邀请回答
收藏

1 个回答

  • Ding
    Ding
    2023-07-03

    compressedWidth 和 compressedHeight 使用数字类型

    2023-07-03
    有用 1
    回复 2
    • 陈克
      陈克
      发表于移动端
      2023-07-03
      感谢🥹太粗心了我
      2023-07-03
      回复
    • 西大瓜🍉
      西大瓜🍉
      2023-11-13
      我改成数字类型之后,多端转安卓还是不行
      2023-11-13
      回复
登录 后发表内容