Issue in showing tiff image in browser [closed]
I am facing problem in showing tiff images. My html code is below:
< img src="tiffdocument.tif" />
TIFF is not a "web friendly" format. The only formats you can use reliably are GIF, PNG and JPEG.
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" />
精彩评论