Limit image proportions using JavaScript
P粉111927962
P粉111927962 2024-02-17 20:13:49
0
1
423

<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.

P粉111927962
P粉111927962

reply all(1)
P粉032977207

You basically need to add a handler for the input and check height/width === 1 , you can use this function to verify it:

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;
    };
  };
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!