获取图片上传前的宽高
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);
以上是关于获取图片上传前的宽高的主要内容,如果未能解决你的问题,请参考以下文章