How to handle TIFF file in HTML pages?
I want to display a TIFF file in my HTML page.
I have tried using embedded tag, object id, img, etc. But I am unable to display the image (TIFF) in the HTML page.
I am not using Java, .NET or any other thing in my project. I am using HTML only.
UPDATE: Safari supports TIFF image loading. How can I load TIFF images in other browsers (IE, Mozilla, Firefox, etc)?
I am unable to install a third party plugin or controller (like ActiveXController).
This comes down to browser image support; it looks like the only mainstream browser that supports tiff is Safari:
http://en.wikipedia.org/wiki/Comparison_of_web_browsers#Image_format_support
Where are you getting the tiff images from? Is it possible for them to be generated in a different format?
If you have a static set of images then I'd recommend using something like PaintShop Pro to batch convert them, changing the format.
If this isn't an option then there might be some mileage in looking for a pre-written Java applet (or another browser plugin) that can display the images in the browser.