vue中上传图片限制大小、宽高

imgReady(data.object, function () {
if(this.width < 360 || this.height < 360) {
document.getElementById("myImageShow").src = "../../public/img/background.png";
alert("图片大小不能低于360*360PX");
}
if(this.width != this.height) {
document.getElementById("myImageShow").src = "../../public/img/background.png";
alert("上传图片比例为1:1");
}
});
posted @ 2018-07-18 11:41  wangbiubiu  阅读(10251)  评论(0编辑  收藏  举报