-
Notifications
You must be signed in to change notification settings - Fork 623
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support CMYK conversion (for TIFFs) #2074
Comments
Looks like we are dealing with "Section 16: CMYK Images" of TIFF 6.0 |
I think this error is actually coming from the main image crate which doesn't support all the color formats that image-tiff does. Specifically if I'm interpreting the output correctly, the tiff file is in CMYK format and while this crate is perfectly happy to extract the contents, we currently lack the ability to convert to RGB which would be needed to produce a DynamicImage. You can see |
Yeah, image-tiff is working as expected here. Can you move this to image-rs? Converting CMYK to RGB sounds easy enough. (Famous last words.) |
The following image
gives this error with image-rs
I'm not sure if that's the exact same missing feature as image-rs/image-tiff#202 since instead of "palette", this image reports "separated."
The text was updated successfully, but these errors were encountered: