|
| static sw_cmm_result | lcms_construct (sw_cmm_instance *instance) |
| | Construct an instance of the sw_cmm_api interface. More...
|
| |
| sw_cmm_api * | lcms_getInstance () |
| | Return the singleton instance of a sw_cmm_api object containing details specific to the LittleCMS CMM example module. More...
|
| |
| sw_cmm_result | lcms_open_profile (sw_cmm_instance *instance, sw_blob_instance *ICC_profile, sw_cmm_profile *handle) |
| | Create an internal profile structure for ICC profile data stored in memory. Required for use by lcms_open_transform(). More...
|
| |
| void | lcms_close_profile (sw_cmm_instance *instance, sw_cmm_profile profile) |
| | Close a profile with a handle previously created with lcms_open_profile(). More...
|
| |
| static HqBool | isSupportedColorSpace (cmsHPROFILE hProfile, HqBool usePCS) |
| | Determine whether the specified color space is supported in this implementation. More...
|
| |
| static cmsUInt32Number | getFormatFromProfile (cmsHPROFILE hProfile, HqBool usePCS) |
| | Generate a LCMS color space format value. More...
|
| |
| static uint32 | getChannelCountFromProfile (cmsHPROFILE hProfile, HqBool usePCS) |
| | Find the number of color channels used in the specified profile. More...
|
| |
| static int | getLCMSRenderingIntent (int32 nRIPIntent) |
| | Convert a rendering intent from the CMM API into its LCMS equivalent. More...
|
| |
| sw_cmm_result | lcms_open_transform (sw_cmm_instance *instance, sw_cmm_profile profiles[], uint32 num_profiles, int32 intents[], HqBool black_point_compensations[], uint32 *num_input_channels, uint32 *num_output_channels, sw_cmm_transform *handle) |
| | Create a transform structure. More...
|
| |
| void | lcms_close_transform (sw_cmm_instance *instance, sw_cmm_transform transform) |
| | Close a transform previously opened with lcms_open_transform(). More...
|
| |
| sw_cmm_result | lcms_invoke_transform (sw_cmm_instance *instance, sw_cmm_transform transform, float *input_data, float *output_data, uint32 num_pixels) |
| | Use the specified transform to adjust color data. More...
|
| |
CMM Implementation of the interface to the LittleCMS library.