寻找适用于 .NET 的 TIFF 查看器

发布于 2024-10-21 22:06:21 字数 1539 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撕心裂肺的伤痛 2024-10-28 22:06:21

我不知道有任何解决方案可以完全阻止保存/打印。不过,您可以做一些事情。

  • 将部分图像发送到浏览器(即限制为 8bpp,缩放图像)。例如,如果谷歌地图使用单个 TIFF,那么祝你好运,一次将其保存为屏幕截图。
  • 将降级图像发送到浏览器(即使用 LibTIFF.NET 读取(部分)tiff,将其转换为有损 JPG 并将其发送到浏览器。
  • 两者的组合
  • 为打印机设备提供不同的 css,从而忽略了图像。
  • 打开没有控件的新浏览器窗口。

您可能会找到一些基于 Silverlight 或 flash 的良好解决方案,它们可以对浏览器中的用户自由度提供更高程度的控制。如果您正在专门搜索这些解决方案,请相应地更新您的问题。

祝你好运

I'm not aware of any solution which can totally prevent saving/printing. However there are a few things you can do.

  • send a partial image to the browser (i.e. limited to 8bpp, scaled image). For instance, if google maps would use a single TIFF, good luck in saving it a screenshot at a time.
  • send degraded image to browser (i.e. use LibTIFF.NET to read (part of) the tiff, convert it to lossy JPG and send that to the browser.
  • combination of both
  • provide a different css for printer device, which leaves out the image.
  • open a new browser window without controls.

You may find some good solutions based on Silverlight or flash, which provide a higher degree of control on the freedom of the user in the browser. If you are searching for those specifically, please update your question accordingly.

Good luck

葬シ愛 2024-10-28 22:06:21

ImageMagick 支持很多东西,例如 TIF: http://imagemagick.codeplex.com/

它可以是用于将图像转换为其他格式。

如果我正确地阅读你的问题(基于 asp.net 标签),你实际上想要一个用于网络浏览器的 TIFF 查看器吗?这与.Net 无关。要实现这一点,您必须在所有客户端上安装插件,或者拥有能够读取和显示图片的 JavaScript/Flash/Silverlight 应用程序。

ImageMagick supports a lot of stuff, for instance TIF: http://imagemagick.codeplex.com/

It can be used to convert images to other formats.

If I am reading your question correctly (based on the asp.net tag) you actually want a TIFF-viewer for webbrowser? That is unrelated to .Net. To achieve that you'd have to either install a plugin on all the clients or have a JavaScript/Flash/Silverlight app capable of reading and displaying the picture.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文