搜索

首页  >  问答  >  正文

使用 JavaScript 限制图像比例

<input type="file" id="file" accept="image/gif, image/jpeg, image/png">

HTML 代码的结构如下。 在这种情况下,如果输入中没有输入比例为1:1的图像,我想通过JavaScript移动到另一个页面。

P粉111927962P粉111927962338 天前495

全部回复(1)我来回复

  • P粉032977207

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

    您基本上需要为输入添加一个处理程序,并检查 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;
        };
      };
    }

    回复
    0
  • 取消回复