2

I may be forced into using a tiff image on a webpage.

Do most modern browsers handle tiffs. Are there any gotchas?

AJM
  • 32,054
  • 48
  • 155
  • 243

3 Answers3

3

If you're using Safari, you're good... otherwise, good luck
http://en.wikipedia.org/wiki/Comparison_of_web_browsers#Image_format_support

Here is some further reading using the AlternaTiff (workaround)
http://www.alternatiff.com/
http://www.alternatiff.com/howtoembed.html

However, since you're using ASP.NET, maybe you can convert the Tiff to a Jpg in the backend
http://www.codeproject.com/KB/GDI-plus/dotnet_convertimage.aspx
http://bytes.com/topic/c-sharp/answers/267798-convert-tiff-images-gif-jpeg

reference this so question

Community
  • 1
  • 1
Chase Florell
  • 46,378
  • 57
  • 186
  • 376
3

Browsers don't do tiff generally. However alternatif is a pretty good and free solution for displaying tiffs.

You might also consider converting the tiff to somethings else on the back end and on the fly.

Jim Blizard
  • 4,255
  • 28
  • 37
3

I was given a similar requirement, and solved it by converting the TIFF into a JPEG server-side and then supplying the option to ZOOM, at which point I would obtain a larger copy.

There is limited browser support for TIFF files and they tend to be more much, much larger than the equivalent JPEG.

Fenton
  • 241,084
  • 71
  • 387
  • 401