search

Home  >  Q&A  >  body text

Limit image proportions using JavaScript

<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粉111927962P粉111927962349 days ago503

reply all(1)I'll reply

  • P粉032977207

    P粉0329772072024-02-18 10:46:13

    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;
        };
      };
    }

    reply
    0
  • Cancelreply