HighDots Forums  

Can javascript give me image dimensions?

Javascript JavaScript language (comp.lang.javascript)


Discuss Can javascript give me image dimensions? in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Randell D.
 
Posts: n/a

Default Can javascript give me image dimensions? - 09-25-2003 , 01:30 AM







Folks,
I want to create a popup for thumbnail images (jpg, png, gif) and wonder if
I can create a popup that opens a new window whereby the image fits the new
window 100%... I know I can have my Apache/PHP server do this, but my
preference leans towards clientside javascript...

Thus... can javascript calcuate the width/height of an image for me to do
the above?

thanx

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet?



Reply With Quote
  #2  
Old   
Randell D.
 
Posts: n/a

Default Re: Can javascript give me image dimensions? - 09-26-2003 , 01:21 AM







"Randell D." <you.can.email.me.at.randelld (AT) yahoo (DOT) com> wrote

Quote:
Folks,
I want to create a popup for thumbnail images (jpg, png, gif) and wonder
if
I can create a popup that opens a new window whereby the image fits the
new
window 100%... I know I can have my Apache/PHP server do this, but my
preference leans towards clientside javascript...

Thus... can javascript calcuate the width/height of an image for me to do
the above?

thanx

Got it... from an old post...

<script Language='javascript1.2' type='text/javascript'>
<!--
function iLoad(isrc) {
var oImg = new Image();
oImg.src = isrc;
if (oImg.complete) {
window.alert(oImg.src + ' ' + oImg.width + ' x ' + oImg.height);
}
else {
window.setTimeout('iLoad(imgsrc)', 1000);
}
}
//-->
</script>
</HEAD>
<body onLoad='iLoad(imgsrc)'>
</body>
</HTML>




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.