uni使用new image()获取图片信息报错

uni使用new image()报ReferenceError: Image is not defined或者获取不到对象

JS代码:

var img = new Image(); // 创建对象
img.src = getBase64List; // 改变图片的src
img.onload = function(e) { // 加载完成执行
     contentWidth = this.width, contentHeight = this.height;
}

 

解决方案:

使用用 uni.getImageInfo 代替new image()

uni.getImageInfo({
        src: this.getBase64List,
    success: function (image) {
            console.log(image);
        console.log(image.height);
        var contentWidth = image.width;
            var contentHeight = image.height;
    }
});

 

上一篇:CDR制作逼真的粗布材料教程


下一篇:app毕业设计 基于uni-app框架的电影院订票选座app毕设题目课题选题作品(2)后台管理功能