convert to ADOBE rgb profile
convert to ADOBE rgb profile
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?
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?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: convert to ADOBE rgb profile
-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=
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
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.
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
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
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
Try:
Code: Select all
convert input.psd[0] output.jpg
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: convert to ADOBE rgb profile
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 commandpeterbradd 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.
mogrify -path /users/peter/desktop/temp2 -format jpeg -profile adobeRGB1998.icc *.jpeg
Last edited by fmw42 on 2010-01-22T12:11:56-07:00, edited 1 time in total.
Re: convert to ADOBE rgb profile
A new poster Fred on a thread from last year 

Re: convert to ADOBE rgb profile
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
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
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: convert to ADOBE rgb profile
Try using the full path of your downloaded profile: /my_downloads/adobeRGB1998.icc or whatever.
snibgo's IM pages: im.snibgo.com
Re: convert to ADOBE rgb profile
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?
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?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: convert to ADOBE rgb profile
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)
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)
snibgo's IM pages: im.snibgo.com
Re: convert to ADOBE rgb profile
JPEG* JPEG rw- Joint Photographic Experts Group JFIF format (70)
JPG* JPEG rw- Joint Photographic Experts Group JFIF format (70)
JPG* JPEG rw- Joint Photographic Experts Group JFIF format (70)