From f4e9f9122a001b71219d9b2d2a6ec5b8c784d785 Mon Sep 17 00:00:00 2001 From: Marti Maria Date: Mon, 15 May 2023 18:37:34 +0200 Subject: a preliminar implementation of OkLab color space as built-in profile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Oklab is an alternative to CIE Lab. It works with the same logic, but claims to be more perceptually uniform than CIELab. Thanks to Lukas Sommer for the idea and Björn Ottosson for the documentation --- include/lcms2.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/lcms2.h b/include/lcms2.h index c361520..8769267 100644 --- a/include/lcms2.h +++ b/include/lcms2.h @@ -1634,6 +1634,8 @@ CMSAPI cmsHPROFILE CMSEXPORT cmsCreateXYZProfile(void); CMSAPI cmsHPROFILE CMSEXPORT cmsCreate_sRGBProfileTHR(cmsContext ContextID); CMSAPI cmsHPROFILE CMSEXPORT cmsCreate_sRGBProfile(void); +CMSAPI cmsHPROFILE CMSEXPORT cmsCreate_OkLabProfile(cmsContext ctx); + CMSAPI cmsHPROFILE CMSEXPORT cmsCreateBCHSWabstractProfileTHR(cmsContext ContextID, cmsUInt32Number nLUTPoints, cmsFloat64Number Bright, -- cgit v1.2.1