-
$arr=getimagesize("images/album_01.gif");
เสียงสะท้อน $arr[3];
$strarr=explode(""",$arr[3]);
เสียงสะท้อน $strarr[1];
?>
<HTML>
<หัว>
<TITLE>ภาพสาธิตลดขนาดลง</TITLE>
<สคริปต์>
ฟังก์ชั่น Wa_SetImgAutoSize (img)
-
//var img=document.all.img1;//รับรูปภาพ
var MaxWidth=200;//กำหนดขีดจำกัดความกว้างของรูปภาพ
var MaxHeight=100;//กำหนดขีดจำกัดความสูงของรูปภาพ
var HeightWidth=img.offsetHeight/img.offsetWidth;//กำหนดอัตราส่วนภาพ
var widthHeight=img.offsetWidth/img.offsetHeight;//กำหนดอัตราส่วนภาพ
alert("test"+img.offsetHeight+img.fileSize);
ถ้า (img.offsetHeight>1) การแจ้งเตือน (img.offsetHeight);
ถ้า(img.readyState!="สมบูรณ์"){
return false;//ตรวจสอบให้แน่ใจว่าโหลดรูปภาพเต็มแล้ว
}
ถ้า(img.offsetWidth>MaxWidth){
img.width=ความกว้างสูงสุด;
img.height=MaxWidth*HeightWidth;
-
ถ้า(img.offsetHeight>MaxHeight){
img.height=ความสูงสูงสุด;
img.width=MaxHeight*WidthHeight;
-
}
ฟังก์ชั่น CheckImg(img)
-
ข้อความ var="";
var MaxWidth=1;//กำหนดขีดจำกัดความกว้างของรูปภาพ
var MaxHeight=1;//กำหนดขีดจำกัดความสูงของรูปภาพ
ถ้า(img.readyState!="สมบูรณ์"){
return false;//ตรวจสอบให้แน่ใจว่าโหลดรูปภาพเต็มแล้ว
-
if(img.offsetHeight>MaxHeight) message+="rHeight ส่วนเกิน:"+img.offsetHeight;
if(img.offsetWidth>MaxWidth) message+="rWidth ส่วนเกิน:"+img.offsetWidth;
if(message!="") การแจ้งเตือน (ข้อความ);
-
</สคริปต์>
</HEAD>
<ร่างกาย>
<img src="images/frequency.gif" border=0 id="img1" onload="CheckImg(this);">
<br>
<input id=inp type="file" onpropertychange="img1.src=this.value;">
</ร่างกาย>
</HTML>