Click to See Complete Forum and Search --> : I never learned how to publish my own pictures to the web (Should I be embarrassed?)
mike444
06-18-2004, 05:25 AM
Hi,
Is "Canon Image Scan" old? I just scanned a test image w/ it and where ever I try to upload it I have problems. It has a .tif extension but I downloaded an image converter (not sure if it's working).
The image is 8.something mb but I found a free image host-- cycz.us--- that gives up to 15mb free space. Still won't accept the picture, though. Can anyone help? Thanks.
btw- To illustrate the extent of my difficulties, I can't even get the image to show up on a primative webpage I created in notepad.
mike444
06-18-2004, 05:29 AM
And, yes, I saw the "Uploading an image" thread but I couldn't gleen anything useful to my particular problem from it. I tried, though.
DaveSW
06-18-2004, 06:43 AM
I think that thread was something different - about getting users of your website to upload their own pictures.
Anyway, how are you supposed to upload images to your host? Does FTP sound familiar, or is it some sort of web form?
Also can we see the code for your primitive web page (maybe just your image code).
mike444
06-18-2004, 08:24 AM
Originally posted by DaveSW
Anyway, how are you supposed to upload images to your host? Does FTP sound familiar, or is it some sort of web form?
A
Well, I do not know much about what ftp does so....The host I tried--- nycz.us--- said they accept .tif's but mine didn't work... :confused:
I created an html page in notebook -- just so I could see if the picture shows up...it doesn't...here's the code:
<html><body><IMG SRC="C:/MyDocuments/IMAGE8.tif">
</body></html>
With code as simple as that, I don't know what it could be ....:confused:
DaveSW
06-18-2004, 10:20 AM
Well there seems to be some fundamental problems in the way you're approaching it...
Do you have Yahoo Messenger? Maybe it would be easier to talk you through...
mike444
06-18-2004, 01:38 PM
Okay, I'm still not having any luck with this. My Yahoo messenger ID is trat444
ray326
06-18-2004, 01:39 PM
<html><body><IMG SRC="C:/MyDocuments/IMAGE8.tif">
<html><body><IMG SRC="file:///C|My%20Documents/IMAGE8.tif">
</body></html>
mike444
06-18-2004, 01:44 PM
Originally posted by ray326
<html><body><IMG SRC="file:///C|My%20Documents/IMAGE8.tif">
</body></html>
Gonna try it right now. Let you know if it worked...
mike444
06-18-2004, 01:50 PM
Originally posted by ray326
<html><body><IMG SRC="file:///C|My%20Documents/IMAGE8.tif">
</body></html>
Didn't work.
the tree
06-18-2004, 01:55 PM
Are you sure your getting the file reference right? That is an absolute file refrence that would only make sense to a file on your computer not one on the net.
mike444
06-18-2004, 01:59 PM
Originally posted by ray326
<html><body><IMG SRC="file:///C|My%20Documents/IMAGE8.tif">
</body></html>
Oh wait, should have I renamed the file "file:///C|My%20Documents/IMAGE8.tif"?
Don't answer. I'll try that too. be back in a flash!
mike444
06-18-2004, 02:02 PM
Originally posted by the tree
Are you sure your getting the file reference right? That is an absolute file refrence that would only make sense to a file on your computer not one on the net.
Yes, I'm referencing the file on my computer. Nothing's working.
the tree
06-18-2004, 02:17 PM
NO NO NO NO NO NO NO NO NO NO NO NO
dont ever refernce to a file on your computer, refernce to the uploaded version. If it's in the same folder as your html page then <img src="/picture.jpg"> and if it's one folder up then <img src="/folder/picture.jpg">
mike444
06-18-2004, 02:23 PM
Originally posted by the tree
NO NO NO NO NO NO NO NO NO NO NO NO
dont ever refernce to a file on your computer, refernce to the uploaded version.
It's not uploaded yet. Just clarifying.
If it's in the same folder as your html page then <img src="/picture.jpg"> and if it's one folder up then <img src="/folder/picture.jpg">
The image and the webpage are both in "MY Documents". Does that make it the same folder?
Neczy
06-18-2004, 03:24 PM
alright heres what you want to do.
Make a new folder on your desktop and then move the image into it. then, move the notepad file into it.
Then, use the html:
<html>
<body>
<img src="imagename.tif">
</body>
</html>
That should work.
Aronya1
06-18-2004, 06:05 PM
A couple of things:
If you're going to use the file with the .tif extension, you may have to wait a long time - maybe minutes - for the browser to display it. 8MB is a huge image. So, just maybe you have a patience situation to deal with at this point.
Next, unless you have a specifc need to use a .tif file, you should convert it to some other format. Jpg would be the standard. NO ONE is going to wait for an 8 meg image to load on the Internet. Go to Irfanview (http://www.irfanview.com) and download it. It is free and easy to use. It will convert your image to a .jpg in seconds, and your problems will likely be over.
David Harrison
06-19-2004, 08:24 AM
When you saved the image was there a dropdown box underneath that said, "Save as type:"? If there was then try opening your image up again and saving it as a .jpg or a .png file, jpg's are good for large images, png's are good for smaller ones, jpg's give a reduction in quality though.
It could be that your browser (IE?) doesn't support .tif images as I suspect may be the case.