views:

35

answers:

2

Sir, i am facing problem in showing tiff images. following is my html code. plz help.

Thanks

< img src="tiffdocument.tif" />

A: 

Will you able to see other images such as .png, .gif, .jpeg etc ?

Is your image path is correct ?

there must not be space between < and tagname

< img src="tiffdocument.tif" />

should be

<img src="tiffdocument.tif" />
Salil
sorry not working
what will you get instead of image?check my edited answer?
Salil
+1  A: 

TIFF is not a "web friendly" format. The only formats you can use reliably are GIF, PNG and JPEG.

David Dorward
David is correct. Actually, no browser can support TIF files ( I think it has to do with licensing ). What I would do is write an HTTP service that dynamically converts a TIF to a PNG and put the URL of that service as the <img src="...">
alessandro ferrucci