有没有办法从传入的多页tiff流中提取单独的流。
然后我会将它们传递给DefaultStreamedContent
构造函数并使用<p:graphicImage>
显示它们。
感谢。
答案 0 :(得分:1)
据我所知,您不能直接通过primefaces-component显示.tiff文件。但是,您可以使用类似以下内容的纯HTML格式显示它:
<embed width=200 height=200
src="tiffdocument.tif" type="image/tiff"
negative=yes>
唯一的缺点是您必须提供.tiff文件作为资源,但是这是可能的。同样,多页也不成问题,因为您可以轻松地将两个流合并到一个.tiff文件中。