获取图片上传前的宽高

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取图片上传前的宽高相关的知识,希望对你有一定的参考价值。

有时候我们需要对上传的图片做一些限制,我在vue里面用的

var reader = new FileReader();
var that = this;
reader.onload = function(e){
//console.log(e);
    var img = new Image();
    img.src = e.target.result;
    img.onload = function(){
console.log(
this.width, " ", this.height); if(this.width != 500 || this.height != 158){   that.$message.error(‘图片宽高不符合尺寸!!‘);   that.$refs.upload.abort();   that.$refs.upload.clearFiles();   } } } var url = reader.readAsDataURL(file);

 

以上是关于获取图片上传前的宽高的主要内容,如果未能解决你的问题,请参考以下文章

获取上传图片的宽高尺寸

获取上传图片的宽高尺寸

vue 限制上传图片的宽高(基于iviewUI)

简单写一下图片上传获取宽高的方法

JS - 从base64代码中获取图片的宽高

php 在多个上传图片时 怎么获取 要上传的图片宽高