[sips]カラーモード
samplesPerPixelの1or3で分岐すればいいでしょう
→16BITのカラーに変換しちゃえばいいかな…全部
白黒 (2色)
samplesPerPixel: 1
bitsPerSample: 1
8bitグレースケール(256階調)
samplesPerPixel: 1
bitsPerSample: 8
16bitグレースケール (65,535階調)
samplesPerPixel: 1
bitsPerSample: 16
32bitグレースケール
samplesPerPixel: 1
bitsPerSample: 32
4bitカラー(16色)
samplesPerPixel: 3
bitsPerSample: 4
8bit カラー(256色)
samplesPerPixel: 3
bitsPerSample: 8
16bit RGBカラー(65,536色)
samplesPerPixel: 3
bitsPerSample: 16
24bit RGBカラー (1678万色)
samplesPerPixel: 3
bitsPerSample: 24=8,8,8
32bit RGBカラー(1678万色)
samplesPerPixel: 3
bitsPerSample: 32=8,8,8,x
sh-3.2$ sips -h
sips - scriptable image processing system.
This tool is used to query or modify raster image files and ColorSync ICC profiles.
Its functionality can also be used through the "Image Events" AppleScript suite.
Usages:
sips [image-functions] imagefile ...
sips [profile-functions] profile ...
Profile query functions:
-g, --getProperty key
-X, --extractTag tag tagFile
--verify
-1, --oneLine
Image query functions:
-g, --getProperty key
-x, --extractProfile profile
-1, --oneLine
Profile modification functions:
-s, --setProperty key value
-d, --deleteProperty key
--deleteTag tag
--copyTag srcTag dstTag
--loadTag tag tagFile
--repair
-o, --out file-or-directory
Image modification functions:
-s, --setProperty key value
-d, --deleteProperty key
-e, --embedProfile profile
-E, --embedProfileIfNone profile
-m, --matchTo profile
-M, --matchToWithIntent profile intent
--deleteColorManagementProperties
-r, --rotate degreesCW
-f, --flip horizontal|vertical
-c, --cropToHeightWidth pixelsH pixelsW
--cropOffset offsetY offsetH
-p, --padToHeightWidth pixelsH pixelsW
--padColor hexcolor
-z, --resampleHeightWidth pixelsH pixelsW
--resampleWidth pixelsW
--resampleHeight pixelsH
-Z, --resampleHeightWidthMax pixelsWH
-i, --addIcon
--optimizeColorForSharing
-o, --out file-or-directory
-j, --js file
Other functions:
--debug Enable debugging output
-h, --help Show help
-H, --helpProperties Show help for properties
--man Generate man pages
-v, --version Show the version
--formats Show the read/write formats
sh-3.2$
| 固定リンク
「sips」カテゴリの記事
- [sips]カラー判定(2024.06.12)
- [SIPS]見開き画像を左右別ページにCROPする(2022.07.13)
- [sips]画像のリサンプル resampleHeightWidth resampleHeightWidthMax(2022.02.17)
- [sips]画像のCROP(2022.02.17)
- [sips]画像の操作 rotate flip horizontal flip vertical(2022.02.17)