Page 1 of 1
convert to ADOBE rgb profile
Posted: 2010-01-21T21:07:34-07:00
by peterbradd
I need to convert 132 cmyk images to rbg
I am using
mogrify -path /users/peter/desktop/temp2 -format jpg -colorspace Adobe RGB *.jpg
and recieve mogrify: unrecognized image colorspace `Adobe' @ mogrify.c/MogrifyImageCommand/4406.
if i leave adobe out image magick converts to sRGB
Any Help?
Re: convert to ADOBE rgb profile
Posted: 2010-01-21T21:26:32-07:00
by fmw42
-colorspace does not support profiles. you need to use -profile
see
http://www.imagemagick.org/Usage/formats/#color_profile
If there is no embedded profile then the first "-profile" is the input profile. A second "-profile" then defines the output profile.
If there is an embedded profile then a single of "-profile" operator will immediately define the output profile.
And examples below that.
see links for download at
http://www.adobe.com/cfusion/search/ind ... bergb.html
or look in any Adobe product, such as photoshop and it should be there
I just downloaded the mac version of RGB and CMYK from the link above.
Also do a google search for color profiles:
http://www.google.com/search?hl=en&sour ... aqi=g1&oq=
Re: convert to ADOBE rgb profile
Posted: 2010-01-22T03:01:44-07:00
by peterbradd
ok thanks for that
i've downloaded adobergb1998.icc
i type
cd /users/peter/desktop/temp
mogrify -path /users/peter/desktop/temp2 -format jpg -profile adobeRGB1998.icc *.jpg
I receive
mogrify: unable to open image `*.jpg': No such file or directory @ blob.c/OpenBlob/2482.
Re: convert to ADOBE rgb profile
Posted: 2010-01-22T06:22:38-07:00
by janetbrand28
I would like to ask if this: "cd /users/peter/desktop/temp
mogrify -path /users/peter/desktop/temp2 -format jpg -profile adobeRGB1998.icc *.jpg"
converts the photoshopped file into jpeg?
Schneeschuh
Re: convert to ADOBE rgb profile
Posted: 2010-01-22T06:24:41-07:00
by Bonzo
Re: convert to ADOBE rgb profile
Posted: 2010-01-22T10:46:46-07:00
by fmw42
peterbradd wrote:ok thanks for that
i've downloaded adobergb1998.icc
i type
cd /users/peter/desktop/temp
mogrify -path /users/peter/desktop/temp2 -format jpg -profile adobeRGB1998.icc *.jpg
I receive
mogrify: unable to open image `*.jpg': No such file or directory @ blob.c/OpenBlob/2482.
As mentioned in your other post (
viewtopic.php?f=1&t=15344), I believe your images are .jpeg and not .jpg, so you need to use .jpeg in your command
mogrify -path /users/peter/desktop/temp2 -format jpeg -profile adobeRGB1998.icc *.jpeg
Re: convert to ADOBE rgb profile
Posted: 2010-01-22T11:12:25-07:00
by Bonzo
A new poster Fred on a thread from last year

Re: convert to ADOBE rgb profile
Posted: 2010-02-16T15:20:46-07:00
by peterbradd
I get
mogrify: unable to open file `adobeRGB1998.icc': No such file or directory @ blob.c/FileToBlob/830.
adobeRGB1998.icc is in my downloads folder. Does it have to be in a specific location?
thanks
Re: convert to ADOBE rgb profile
Posted: 2010-02-16T15:30:49-07:00
by snibgo
Try using the full path of your downloaded profile: /my_downloads/adobeRGB1998.icc or whatever.
Re: convert to ADOBE rgb profile
Posted: 2010-02-17T17:29:50-07:00
by peterbradd
Macintosh:temp peter$ mogrify -path /users/peter/desktop/temp -format jpg -profile /users/peter/downloads/adobeRGB1998.icc *.jpg
returns
mogrify: delegate library support not built-in `/users/peter/desktop/temp/TyusAtPurnululu.jpg' (LCMS) @ profile.c/ProfileImage/897.
Images seem to have changed profile. what does response above mean?
Re: convert to ADOBE rgb profile
Posted: 2010-02-17T17:56:55-07:00
by snibgo
It probably means your version of mogrify can't read or write jpg files.
Try:
mogrify -list format
It should have a ouple of lines like:
JPEG* JPEG rw- Joint Photographic Experts Group JFIF format (62)
JPG* JPEG rw- Joint Photographic Experts Group JFIF format
What version are you running? (mogrify -version)
Re: convert to ADOBE rgb profile
Posted: 2010-02-21T06:08:35-07:00
by peterbradd
mageMagick 6.5.9-0
Re: convert to ADOBE rgb profile
Posted: 2010-02-21T06:10:13-07:00
by peterbradd
JPEG* JPEG rw- Joint Photographic Experts Group JFIF format (70)
JPG* JPEG rw- Joint Photographic Experts Group JFIF format (70)