Registry / utility / lcms
library2.18vcpkgunverified

Little CMS is a color management engine for accurate color conversion and profiling.

vcpkg install lcms
INSTALL
IMPORT
SIG · LCMS
L
lcms
utilitycppv2.18
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

lcms2.h
#include <lcms2.h>

Minimal example creating a color transform from sRGB to Lab.

#include <lcms2.h> #include <stdio.h> int main() { cmsHPROFILE srgb = cmsCreate_sRGBProfile(); cmsHPROFILE lab = cmsCreateLab4Profile(NULL); cmsHTRANSFORM transform = cmsCreateTransform(srgb, TYPE_RGB_8, lab, TYPE_LAB_DBL, INTENT_PERCEPTUAL, 0); printf("Transform created.\n"); cmsDeleteTransform(transform); cmsCloseProfile(srgb); cmsCloseProfile(lab); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.18latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources

No resource links recorded.

lcms — pip install lcms · libregistry