Hi,
I have a web application used Imagick to generate image.
Then I open the image width Photoshop CS5, view Image mode, it is Indexed color
But if I open the image width Photoshop CC, view Image mode, it is RGB color.
The image here:
Can someone help me ?
View a Image has mode Indexed color in Photoshop CS5 but is RGB in PS CC
-
- Posts: 7
- Joined: 2014-03-30T20:57:37-07:00
- Authentication code: 6789
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: View a Image has mode Indexed color in Photoshop CS5 but is RGB in PS CC
Exiftool is probably the most reliable method of finding the actual formats of images in files. It says this is indexed.
snibgo's IM pages: im.snibgo.com
-
- Posts: 7
- Joined: 2014-03-30T20:57:37-07:00
- Authentication code: 6789
Re: View a Image has mode Indexed color in Photoshop CS5 but is RGB in PS CC
I want change from Indexed to RGB, how?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: View a Image has mode Indexed color in Photoshop CS5 but is RGB in PS CC
convert 1.png -define png:color-type=2 out.png
snibgo's IM pages: im.snibgo.com
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: View a Image has mode Indexed color in Photoshop CS5 but is RGB in PS CC
this works also, since your image has transparency
convert 1.png PNG32:1_new.png
Sorry, I do not know how to do that in Imagick.
see
http://www.imagemagick.org/Usage/formats/#png_formats
http://www.imagemagick.org/Usage/formats/#png_write
convert 1.png PNG32:1_new.png
Sorry, I do not know how to do that in Imagick.
see
http://www.imagemagick.org/Usage/formats/#png_formats
http://www.imagemagick.org/Usage/formats/#png_write
-
- Posts: 7
- Joined: 2014-03-30T20:57:37-07:00
- Authentication code: 6789
Re: View a Image has mode Indexed color in Photoshop CS5 but is RGB in PS CC
Thank you all.
I want the image was created is RGB and it will display exactly at all Photoshop version.
It seems difficult
I want the image was created is RGB and it will display exactly at all Photoshop version.
It seems difficult
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: View a Image has mode Indexed color in Photoshop CS5 but is RGB in PS CC
Assign it a profile, if the input image does not have one (sRGB or Adobe profiles).