如何在javascript中查看高度和宽度图像?
我的代码是:
jQuery.validator.addMethod('allowdimensions', function (value, element, params) {
if (element.files.length < 1) {
// No files selected
return true;
}
if (!element.files || !element.files[0].size) {
// This browser doesn't support the HTML5 API
return true;
}
var minWidth = parseInt(params['minwidth'], 10);
var maxWidth = parseInt(params['maxwidth'], 10);
var minHeight = parseInt(params['minheight'], 10);
var maxHeight = parseInt(params['maxheight'], 10);
var image = {
width: 0,
height: 0
};
var reader = new FileReader();
var img = new Image();
reader.addEventListener("load", function () {
img.src = reader.result;
}, false);
reader.readAsDataURL(element.files[0]);
return image.width >= minWidth &&
image.width <= maxWidth &&
image.height >= minHeight &&
image.height <= maxHeight;
});
image.width
和image.height
始终为0
;要读取图像,会发生延迟。我不知道在返回输出之前如何读取图像。
答案 0 :(得分:1)
尝试这样。
reader.onload = function (e)
{
image.src = e.target.result;
image.onload = function ()
{
// access image size here
if (this.width < 100 && this.height < 100)
{
// alert("To Small Image or your message");
}
}
}
答案 1 :(得分:0)
我对你在这里尝试做的事情感到有些困惑。但试试这个:https://jsfiddle.net/3dqnc1wa/1/
jQuery的:
$("document").ready(function() {
var imageWidth = $("img").width();
var imageHeight = $("img").height();
$("#dims").html("Width: " + imageWidth + " x Height: " + imageHeight)
if(imageWidth >= 400 && imageHeight >= 200) {
$("#test").html("It's equal to or wider than 400px and equal to or higher than 200px");
} else if(imageWidth <= 399 && imageHeight <= 199) {
$("#test").html("It's smaller than or equal to 399px wide and shorter than of equal to 199px");
}
;});
HTML:
<img src="http://placehold.it/350x150">
<div id="dims">
</div>
<div id="test">
</div>
我已使用.width()
和.height()
并将其存储在变量(imageWidth
/ imageHeight
)中,然后使用一些条件检查它们。
答案 2 :(得分:0)
惩罚答案是正确的。但是如果你使用的是jQuery,你可以使用它:
$('#image_id').load(function(){
var Img_Width = $(this).width();
var Img_Height = $(this).height();
});
您的宽度和高度为0,因为图片可能尚未在浏览器中加载。
答案 3 :(得分:0)
你需要为img编写一个小的onload函数,以获得图像的宽度和高度,然后你可以相应地操作它。
var reader = new FileReader();
var img = new Image();
reader.addEventListener("load", function () {
preview.src = reader.result;
img.src=reader.result;
}, false);
reader.readAsDataURL(file);
img.onload = function() {
//alert(this.width + 'x' + this.height);
image.width=this.width;
image.height=this.height;
}
这是这个。 width是图像的宽度,this.height是高度。
在获得图像的高度和宽度后,将其存储在图像json中,并将它们与maxHeight和maxWidth,minHeight和minWidth进行比较。
这是小提琴
https://jsfiddle.net/AnonymousKB07/kn0h5tm2/3/
希望这会有所帮助。