Replies: 2 comments 3 replies
-
I also need to detect rgb vs cmyk TIFF |
Beta Was this translation helpful? Give feedback.
3 replies
-
You're looking for IImageInfo info = Image.Identify(filepath);
JpegMetadata meta = info.Metadata.GetJpegMetadata();
JpegColorType? colorType = meta.ColorType; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
It seems like Image.Identify(filepath) should allow me to detect whether a JPEG is CMYK or RGB, but I can't seem to figure it out.
How do I detect CMYK vs RGB of a JPEG?
Beta Was this translation helpful? Give feedback.
All reactions