有没有办法使用javascript或jquery获取图片尺寸?我正试图从我服务器上的文件夹中获取图像大小,但我不能使用PHP,因为我有大约50多个图像需要检查图像尺寸。是否有可用于获取图像尺寸的插件或功能?
答案 0 :(得分:2)
这个插件可以帮助你:
https://github.com/desandro/imagesloaded
$("#loaded_image").imagesLoaded(function(){
console.log( $(this).width() )
console.log( $(this).height() )
});
但是,如果您想在使用PHP加载图像之前获取信息,请参阅此处:
答案 1 :(得分:0)
互联网
中提供的示例代码<?php
list($width, $height, $type, $attr) = getimagesize("image_name.jpg");
echo "Image width " .$width;
echo "<BR>";
echo "Image height " .$height;
echo "<BR>";
echo "Image type " .$type;
echo "<BR>";
echo "Attribute " .$attr;
?>
答案 2 :(得分:0)
$("img").each(function()
{
console.log(this.width());
console.log(this.height());
});