如何使用 sips 更改 TIFF 图像的压缩方式?
我是 Mac 用户,
如何使用 小口?
下面的 LZW 效果很好。
sips -s formatOptions lzw /DefaultGroup.tif
但这失败了:
sips -s formatOptions packbits /DefaultGroup.tif
知道为什么吗?
I am a Mac guy,
How to get the PackBits compression using sips?
Below one for LZW works fine.
sips -s formatOptions lzw /DefaultGroup.tif
But this fails:
sips -s formatOptions packbits /DefaultGroup.tif
Any idea why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
换句话说
,
使用“pacbits”而不是“packbits”。
有点令人惊讶,但确实如此。
Instead of
try
In other words, use 'pacbits' instead of 'packbits'.
Kind of surprising, but there it is.
下面的代码有效。
但我仍然找不到我的查询的实际答案。
The code below works.
But still I could not find the actual answer to my query.
循环qoob是对的。
sips 的手册页是错误的。使用 sip 时必须使用“pacbits”而不是“packbits”。
换句话说,这会起作用。在运行 High Sierra 的 Mac 上确实如此:
EG
执行此操作后,我可以在预览中打开 tiff 图像。单击“工具”,然后单击下拉菜单中的“显示检查器”。您将看到 TIFF 图像是用 Packbits 压缩的。 (预览显示所使用的压缩的正确名称)。
loopqoob is right.
The man page for sips is wrong. You must use "pacbits" NOT "packbits" when using sips.
In other words, this will work. It does on my Mac running High Sierra:
E.G.
After I do that, I can open up the tiff image in Preview. Click "Tools" and then "Show Inspector" on the drop down menu. You will see that the TIFF image is compressed with Packbits. (Preview shows the correct name of the compression used).