rsapru
rsapru

Reputation: 698

opening a tiff image in IE

Is it possible to open Tiff images in IE, just like BMP opens in IE. When i try to assign an iframe source as a tiff image it pops up a save dialog. i want to display tiff image inside an IE page.

Following is a sample which i was trying

<iframe src='C:\Users\XYZ\Desktop\Untitled.tif'; id ='hello'></iframe>

Upvotes: 6

Views: 8715

Answers (3)

N3x
N3x

Reputation: 1

Try the classic "applet" instead...

Upvotes: 0

Anax
Anax

Reputation: 9362

Internet Explorer doesn't support TIFF images natively. You need a plugin for this to work. Check http://www.alternatiff.com/

Upvotes: 0

Martin
Martin

Reputation: 40325

IE does not natively support TIFF images. You have three options:

  1. Use a browser plugin such as: http://www.alternatiff.com/

  2. Convert the image on the fly before presenting to the browser.

  3. Batch convert the images to another format.

The preferred solution will depend on your situation.

Upvotes: 4

Related Questions