Home > php教程 > php手册 > 用PHP或JS获取图片大小、高宽尺寸

用PHP或JS获取图片大小、高宽尺寸

WBOY
Release: 2016-06-13 11:16:09
Original
963 people have browsed it

 

$arr=getimagesize("images/album_01.gif");
echo $arr[3];
$strarr=explode(""",$arr[3]);
echo $strarr[1];
?>





<script><br />function Wa_SetImgAutoSize(img)<br />{<br />//var img=document.all.img1;//获取图片<br />var MaxWidth=200;//设置图片宽度界限<br />var MaxHeight=100;//设置图片高度界限<br />var HeightWidth=img.offsetHeight/img.offsetWidth;//设置高宽比<br />var WidthHeight=img.offsetWidth/img.offsetHeight;//设置宽高比<br />alert("test" img.offsetHeight img.fileSize);<br />if(img.offsetHeight>1) alert(img.offsetHeight);<br />if(img.readyState!="complete"){<br />return false;//确保图片完全加载<br />}<br /><br />if(img.offsetWidth>MaxWidth){<br />img.width=MaxWidth;<br />img.height=MaxWidth*HeightWidth;<br />}<br />if(img.offsetHeight>MaxHeight){<br />img.height=MaxHeight;<br />img.width=MaxHeight*WidthHeight;<br />}<br />}<br /><br />function CheckImg(img)<br />{<br />var message="";<br />var MaxWidth=1;//设置图片宽度界限<br />var MaxHeight=1;//设置图片高度界限<br /><br />if(img.readyState!="complete"){<br />return false;//确保图片完全加载<br />}<br />if(img.offsetHeight>MaxHeight) message ="r高度超额:" img.offsetHeight;<br />if(img.offsetWidth>MaxWidth) message ="r宽度超额:" img.offsetWidth;<br />if(message!="") alert(message);<br />}<br /></script>








Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template