We're using cfcontent to stream images from outside the web root. jpegs, pngs, and gifs all stream correctly, but I can't get any tiff files to stream. I get the broken image icon, even though I can see that the file is in the correct location and the file name is stored correctly and is being passed correctly.
The code is really simple - the displaying page has
<img src="?file=common/includes/displayPhoto.cfm&thisImage=someImage.tiff" />
and displayPhoto.cfm has
<cfcontent type = "image/*" file = "#imagePath#" deleteFile = "No">
where #imagePath# has the fully qualified file path.
I'm at a loss - and my friend Google has let me down.