将 16 位 tiff 文件转换为可在线查看的文件?
我需要获取 16 位 .tiff 文件并使其可以在我的网站上查看。为了查看 .tiff 文件,许多浏览器都需要插件。我找到了一个可以将它们转换为 .jpg 文件的软件,但我想知道是否有一种方法可以独立完成此操作。我正在使用 Ruby on Rails 制作我的网站。我必须能够从网站进行转换,因为该网站的全部目的是上传 .tiff 文件的大文件夹并在在线幻灯片中显示它们。
任何帮助将不胜感激。
谢谢!
I need to take a 16 bit .tiff file and make it viewable on my website. To even view .tiff files many browsers require plugins. I found a software that could convert them to .jpg files but I was wondering if there is a way to do this independently. I am making my website using Ruby on Rails. I must be able to do the conversion from the website because the whole point of the website is to upload large folders of .tiff files and display them in an online slideshow.
Any help would be appreciated.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Doug 是对的,imagemagick 可能是您最好的选择。安装后,您可以使用命令行界面:
convert input.tiff output.jpg
。如果您碰巧使用 OS X,您还可以使用 sips,例如sips -s format jpeg photo1.tiff --out photo1.jpg
Doug is right, imagemagick is probably your best bet. Once installed, you can use the command-line interface:
convert input.tiff output.jpg
. If you happen to be using OS X, you could also use sips, e.g.sips -s format jpeg photo1.tiff --out photo1.jpg
imagemagick
imagemagick