我们如何根据标准上传图像检查图像尺寸

时间:2013-12-14 09:32:36

标签: javascript jquery image

这里我想编码检查标准。我有根据给定区域调整图像的代码。假设我有300X400px图像。但我希望该图像在200X300px区域。 但不是通过调整大小而是裁剪图像。(通过ImgSelectArea)

我的编码是:

var _URL = window.URL || window.webkitURL;

$("#file").change(function(e) {
    var file, img;


    if ((file = this.files[0])) {
        img = new Image();
        img.onload = function() {
            alert(this.width + " " + this.height);
        };
        img.onerror = function() {
            alert( "not a valid file: " + file.type);
        };
        img.src = _URL.createObjectURL(file);


    }

});

HTML:

<p>image is set to 100x100 pixels!</p>

<img id="draggable" src="http://jotform.org/demo/jquery-image-area-select-plugin/images/sweet-dogs.jpg" />

<div id="dim"></div>

希望你理解我的问题

0 个答案:

没有答案