我可以在Mac OS X中将图像从CMYK转换为RGB吗?


10

是否可以使用“预览”或Mac OS X内置的任何其他工具将JPEG从CMYK转换为RGB?

我看到我可以进入Tools | Assign Profile… 一长串选项中进行选择,包括“通用CMYK配置文件”,但没有RGB选项。

Answers:


17

我发现了三种方法。

  1. 使用ColorSync打开图像。
  2. Apply ColorSync Profile to Images在Automator中使用操作。
  3. 使用sip(感谢NSD)并提供--matchTo参数。我编写了一个Shell脚本,以使用通用RGB配置文件转换图像。

 

#!/bin/sh

if [ $# -lt 1 ]; then
    cat >&2 <<EOF
usage:
    $0 filename
    $0 source-file destination-file

    Converts an image to RGB color space. The first form manipulates
    the file in-place.
EOF
    exit 1
fi           

SOURCE_FILE=$1

if [ $# -lt 2 ]; then
    DESTINATION_FILE=$SOURCE_FILE
else
    DESTINATION_FILE=$2
fi

sips \
    --matchTo '/System/Library/ColorSync/Profiles/Generic RGB Profile.icc' \
    "$SOURCE_FILE" \
    --out "$DESTINATION_FILE"

ColorSync链接已死,但是否则,很好的答案!
Jpsy

为了澄清的ColorSync选项,我成功地转换使用“匹配到配置文件”菜单中的左下角我的PSD文件中的ColorSync 4.14.0
Keyslinger

1

在我的机器(10.6.2)上,提供了两个RGB配置文件:“ Adob​​e RGC(1998)”和“通用RGB配置文件”。Gimp(免费)也可以进行转换。


当我打开已经是RGB的图像时,也会得到这些选项。
Patrick McElhaney 2010年


1

我没有RGB colorsync配置文件,因此我将文件导入了iPhoto,然后再次将其导出。导出的照片为RGB。Voila


1

无论出于何种原因,我都无法通过“预览”和“工具”部分更改颜色模式。我的需求比较简单,但最终我只是在大型外部监视器上的“预览”中打开图像,然后使用Skitch对其进行截图。它符合我的需求,也可能符合您的需求。



0

如果您的计算机上安装了ImageMagick,则可以在终端中执行此操作。

对于image.jpg

convert -colorspace RGB image.jpg newImage.jpg

newImage.jpg 在RGB空间中将是相同的图像。


是的,但是没有为CMYK输入和RGB输出分配配置文件,结果将显示与任何可接受的转换算法相差很远的颜色。
Jpsy
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.