<input type="file" id="file" accept="image/gif, image/jpeg, image/png">
The HTML code is structured as follows. In this case, if there is no image in the input with a 1:1 ratio, I want to move to another page via JavaScript.
You basically need to add a handler for the input and check height/width === 1 , you can use this function to verify it:
height/width === 1
const fileUpload = document.getElementById("file"); function validateImage(target) { const reader = new FileReader(); reader.readAsDataURL(fileUpload.files[0]); reader.onload = function (e) { const image = new Image(); image.src = e.target.result; image.onload = function () { const height = this.height; const width = this.width; if (height / width !== 1) { console.log("ASPECT RATIO NOT 1:1"); window.location.href = "#otherpage"; // redirect return false; } // do nothing return true; }; }; }
You basically need to add a handler for the input and check
height/width === 1
, you can use this function to verify it: