javascript 获取图像像素
发布网友
发布时间:2022-05-17 02:58
我来回答
共4个回答
热心网友
时间:2022-05-17 04:28
临时写了一个供参考:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>cping's test</title>
<script language="javascript" type="text/javascript">
function changeImage(obj)
{
var tmp=document.getElementById(obj);
var param="图像的宽度为:"+tmp.width+"像素,高度为:"+tmp.height+"像素";
alert(param);
}
</script>
</head>
<body>
<img src="https://gss0.bdstatic.com/70cFsjip0QIZ8tyhnq/img/logo-.gif" id="va" onmousemove="changeImage('va')" />
</body>
</html>
热心网友
时间:2022-05-17 05:46
function changeImage(va)
{
alert(va.width);
alert(va.height);
}
热心网友
时间:2022-05-17 07:20
va.width
va.height