Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Is there a way to convert a JPEG from CMYK to RGB, using Preview or any other tool built into Mac OS X?

I see I can go to Tools | Assign Profile… and select from a long list of options, including Generic CMYK Profile, but there's no RGB option.

share|improve this question

5 Answers

up vote 9 down vote accepted

I found three ways to do it.

  1. Open the image with ColorSync.
  2. Use the Apply ColorSync Profile to Images action in Automator.
  3. Use sips (thanks, NSD) and supply the --matchTo argument. I wrote a shell script to convert an image using the Generic RGB Profile.

 

 #!/bin/bash          
 if [ -z "$1" ]; then        
     echo Converts an image to RGB color space
     echo 
     echo usage:  
     echo $0 filename 
     echo $0 source-file destination-file
     exit 
 fi           

 SOURCE_FILE=$1
 DESTINATION_FILE=$2    

 if [ -z "$2" ]; then 
     DESTINATION_FILE=$1
 fi

 sips --matchTo /System/Library/ColorSync/Profiles/Generic\ RGB\ Profile.icc $SOURCE_FILE --out $DESTINATION_FILE 
share|improve this answer
The sips invocation worked for me. – Eric Rath Mar 16 '11 at 17:46

On my machine (10.6.2), two RGB profiles are offered: "Adobe RGC (1998)" and "Generic RGB Profile". Gimp (free) can do the conversion, too.

share|improve this answer
I get those options as well when I open an image that's already RGB. – Patrick McElhaney Mar 8 '10 at 13:40

http://developer.apple.com/Mac/library/documentation/Darwin/Reference/ManPages/man1/sips.1.html

share|improve this answer
Thanks. That led me to the answer, and a couple of GUI interfaces as well. – Patrick McElhaney Mar 8 '10 at 14:37

I didn't have the RGB colorsync profiles, so I imported the files into iPhoto and then exported them again. The exported photos were in RGB. Voila

share|improve this answer

It's really easy. You don't need to do any of these steps. In Preview, just go under Tools, Match to Profile, and under "Color Model" select RGB. The ColorSync Profile will change automatically. Save, and it's done!

share|improve this answer
4  
In what program? – Daniel Beck Aug 29 '12 at 17:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.