LIBJXL
cms.h
1 // Copyright (c) the JPEG XL Project Authors. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file.
5 
6 #ifndef JXL_CMS_H_
7 #define JXL_CMS_H_
8 
9 // ICC profiles and color space conversions.
10 
11 #include <jxl/cms_interface.h>
12 #include <jxl/jxl_cms_export.h>
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 JXL_CMS_EXPORT const JxlCmsInterface* JxlGetDefaultCms();
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif // JXL_CMS_H_
Interface to allow the injection of different color management systems (CMSes, also called color mana...
Definition: cms_interface.h:224