Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > Developer Center > Disable Windows IE Auto Image Resize

Disable Windows IE Auto Image Resize
Thread Tools
Mac Elite
Join Date: Jan 2000
Location: Pittsburgh, PA
Status: Offline
Reply With Quote
Feb 6, 2004, 06:07 PM
 
Does anyone know how to disable that IE 6 (Win) auto resize image. I know you can turn it off in the options, but I'd rather not have to have instructions on the page. I found this post in another forum but it wasn't all that helpful, at least it didn't work for me.

spike[at]avenirex[dot]com | Avenirex
IM - Avenirx | ICQ - 3932806
     
Occasionally Useful
Join Date: Jun 2001
Location: Liverpool, UK
Status: Offline
Reply With Quote
Feb 6, 2004, 06:38 PM
 
i've always preferred an html page with the image in it there, rather than just a lone image. you could use that code then

<meta http-equiv="imagetoolbar" content="no" />
"Have sharp knives. Be creative. Cook to music" ~ maxelson
     
Senior User
Join Date: May 2001
Location: Nottingham, UK
Status: Offline
Reply With Quote
Feb 7, 2004, 05:53 AM
 
I really don't think there's a way to disable it if you just link directly to the .jpg file.

As phil said the best way is to embed it in an html page. If you use php or asp you could set up a page like image.php?pic=whatever.jpg and use that to display the image
     
Senior User
Join Date: Dec 2002
Status: Offline
Reply With Quote
Feb 7, 2004, 11:12 AM
 
Go to Internet Options, under the Advanced tab, Under the Multimedia section, and uncheck "Enable Automatic Image Resizing." This is not web developer or at all mac-related.
Travis Sanderson
     
Avenir  (op)
Mac Elite
Join Date: Jan 2000
Location: Pittsburgh, PA
Status: Offline
Reply With Quote
Feb 7, 2004, 11:45 AM
 
Alright, thanks all for the replies... unfortunately, that's about what I expected. I think I'm just going to have to create the 56 separate pages worth for the images. I thought about using php, but the "web site" is going to be loaded off a CD that the school will be mailing to firms, so there would be no webserver to run php from.

Separate HTML files it is... oh well, at least the title bar will look better now (not "aparisi_images_large.jpg") Oh how I wish my viewers were all using Safari

Thanks again...

spike[at]avenirex[dot]com | Avenirex
IM - Avenirx | ICQ - 3932806
     
Grizzled Veteran
Join Date: Nov 2003
Location: Hebburn, UK
Status: Offline
Reply With Quote
Feb 8, 2004, 05:11 PM
 
Hi, I've had a few drinks and just got back from a tour round the country seeing family, so bear with me

If you do want to make multiple files, couldn't you use a similar solution to what you would with php - that is, send each picture as a variable in the URL.

OK - this is what I mean:

Each link to a picture is actually something like:
Code:
something.html?whatever.jpg
Where whatever.jpg is the name of the picture and something.html would comprise of something like:
Code:
<html> <head> <title></title> <meta http-equiv="imagetoolbar" content="no" /> </head> <script> function init() { var picToShow = document.location.href; if (picToShow.indexOf("?") != -1) { picToShow = picToShow.substr((picToShow.indexOf("?")+1),picToShow.length); document.getElementById("pic").src = picToShow; } else { alert('No Picture to display'); } } </script> </head> <body onload="init()"> <img id="pic" src="" alt="Picture"> </body> </html>
I reckon that should work (well, I know, cos i just typed it up and tried it within the last few minutes...) - obviously, if all the pictures are within a folder, the just include that... You will still have the problem of ugly page titles.

Hope that's a wee bit of help.
     
   
Thread Tools
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 12:57 PM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2