tldr/pages.zh/osx/sips.md

30 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# sips
> 苹果的处理文件脚本系统。
> 光栅 / 查询图像 和 颜色同步 ICC 配置文件。
> 更多信息:<https://keith.github.io/xcode-man-pages/sips.1.html>.
- S 指定一个输出目录,这样原始文件就不会被修改:
`sips --out {{目标 / 文件夹 / 输出文件夹}}`
- 以指定的大小对图像重新采样,图像纵横比可能会更改:
`sips --resampleHeightWidth {{1920}} {{300}} {{图片文件。扩展名}}`
- 对图像重新取样,使高度和宽度不大于指定的大小(注意大写 Z
`sips --resampleHeightWidthMax {{1920}} {{300}} {{图片文件。扩展名}}`
- 对目录中的所有图像重新取样,以适应 960px 的宽度(保持纵横比):
`sips --resampleWidth {{960}} {{目标 / 文件夹 / 所有图片文件}}`
- 将图像从 CMYK 转换为 RGB
`sips --matchTo "/System/Library/ColorSync/Profiles/Generic RGB Profile.icc" {{目标 / 文件夹 / 图片。扩展}} {{目标 / 文件夹 / 输出文件夹}}`
- 从图像中删除 ColorSync ICC 配置:
`sips --deleteProperty profile --deleteColorManagementProperties {{目标 / 文件夹 / 图片。扩展}}`