Upload a picture to get the width and height of the picture

problem description

how to get the width and height attribute of an image successfully uploaded

the environmental background of the problems and what methods you have tried

related codes

/ / Please paste the code text below (do not replace the code with pictures)

what result do you expect? What is the error message actually seen?

Jan.13,2022

    var btn = document.getElementById("uploadImg");//
    var file = btn.files[0];
    var reader = new FileReader();
    reader.readAsDataURL(file);
    reader.onload = function(){ //result
        var img = new Image();
        img.onload = function(){
            console.log(img.wdith,img.height)
        }
        img.src = this.result;
    }
Menu