cms.h 474 B

123456789101112131415161718192021222324
  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. #ifndef JXL_CMS_H_
  6. #define JXL_CMS_H_
  7. // ICC profiles and color space conversions.
  8. #include <jxl/cms_interface.h>
  9. #include <jxl/jxl_cms_export.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. JXL_CMS_EXPORT const JxlCmsInterface* JxlGetDefaultCms();
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif // JXL_CMS_H_