按指定尺寸搜索图片

Search Image by specified size

前段时间我得到了一些帮助,制作了一个可以在 google 上以预设大小搜索图像的东西。现在我想知道是否可以更改此 HTML5 以便您可以输入自己的尺寸来使用而不是预设尺寸。因此,如果我在标有 width 的文本框中键入 54,在标有 的文本框中键入 10 ]height,我只会得到宽度为 54 和高度为 10.[=11 的图像的结果=]

<form action="https://www.google.com/search" method="get">
   <input name="tbm" value="isch" type="hidden">
   <input name="tbs" value="isz:ex,iszw:10328,iszh:7760" type="hidden">
   <input name="q" size="35" type="text" placeholder="zelda">
   <input type="submit" value="Find 10K images">
 </form>
<script>
    function addSpecs() {
        document.getElementsByName("tbs")[0].value =
            "isz:ex,iszw:"
            + document.getElementById("w").value
            + ",iszh:"
            + document.getElementById("h").value;
    }
</script>
<form action="//www.google.com/search" method="get">
    <input type="hidden" name="tbm" value="isch" />
    <input type="hidden" name="tbs" value="" />
    w: <input type="text" id="w" /><br />
    h: <input type="text" id="h" /><br />
    <input type="text" name="q" size="35" /><br />
    <input type="submit" value="Find images" onclick="addSpecs();" />
 </form>