-
-
Notifications
You must be signed in to change notification settings - Fork 699
Add default-intent
ICC rendering intent
#3475
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
Labels
Comments
I would also add a |
kleisauke
added a commit
to kleisauke/libvips
that referenced
this issue
Jan 20, 2025
Introduce the `VIPS_INTENT_AUTO` enum value and use it as the default for `vips_icc_transform()` and friends. Resolves: libvips#3475.
I just opened PR #4347 for this. |
kleisauke
added a commit
to kleisauke/libvips
that referenced
this issue
Jan 24, 2025
Introduce the `VIPS_INTENT_AUTO` enum value and use it as the default for `vips_icc_transform()` and friends. Resolves: libvips#3475.
kleisauke
added a commit
to kleisauke/libvips
that referenced
this issue
Jan 24, 2025
When the requested rendering intent is not supported by the profile, fallback to the profile's suggested intent. An error will only be raised if the suggested intent is also unsupported. Resolves: libvips#3475.
kleisauke
added a commit
to kleisauke/libvips
that referenced
this issue
Jan 28, 2025
Via the `VIPS_INTENT_AUTO` enum value. Resolves: libvips#3475.
jcupitt
pushed a commit
that referenced
this issue
Jan 29, 2025
* colour: add support for auto-selecting the rendering intent Via the `VIPS_INTENT_AUTO` enum value. Resolves: #3475. * colour: leave room for possible new rendering intents
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Profiles can optionally include a tag saying which intent they recommend. Using (this profile)[http://www.ifra.com/WebSite/ifra.nsf/html/CONT_ISO_DOWNLOADS] I see:
(
Rendering Intent
in the above listing)libvips does not support this in an easy way at the moment. The LCMS API is:
We could add a new
VipsIntent
, perhapsVIPS_INTENT_DEFAULT
, meaning "use the intent recommended by the profile, if any, otherwise use relative".Reporting discussion: #3474
The text was updated successfully, but these errors were encountered: