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");
}
});
相关文章:
- 限制图片上传大小 - 高级菜鸟 2021-11-12
- springboot上传图片大小限制 2022-12-23
- vue中使用el-upload上传图片限制图片格式和大小 2022-12-23
- element-ui upload组件上传图片时限制图片宽高 2022-12-23
- php 图片上传 文件上传 大小 限制 2021-10-16
- 图片上传问题之图片大小限制 2021-11-12
- input type=file 上传图片获取图片宽高、大小 2021-07-02
- ueditor后台上传图片大小限制 2022-12-23