BitDepth with Channel Specified as CMYK for RGB image returns value #624
-
hi when my tiffimage is of RGB color Space, why would the above two lines of code return 8 even though i have Specified channels for BitDepth ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is happening because |
Beta Was this translation helpful? Give feedback.
This is happening because
Cyan=Red
,Magenta=Green
andYellow=Blue
and this methods will return the minimum depth for the specified channels. So in your case you are asking the bit depth for the Red, Green and Blue channels in the first call and only for the Red in the second call.