#color #profile #icc #safe-wrapper #sys #linux-macos #lcms

sys lcms2-sys

Bindings for liblcms2 (Little CMS) with support for Linux, macOS, and Windows. See lcms2 crate for a safe Rust wrapper

20 stable releases

4.0.5 Feb 27, 2024
4.0.4 Nov 23, 2023
4.0.3 Sep 2, 2023
4.0.1 Apr 5, 2023
0.5.0 Jul 16, 2016

#873 in Images

Download history 741/week @ 2023-12-23 3028/week @ 2023-12-30 4210/week @ 2024-01-06 3774/week @ 2024-01-13 5085/week @ 2024-01-20 4456/week @ 2024-01-27 3665/week @ 2024-02-03 3386/week @ 2024-02-10 3550/week @ 2024-02-17 3253/week @ 2024-02-24 2027/week @ 2024-03-02 3246/week @ 2024-03-09 4667/week @ 2024-03-16 2634/week @ 2024-03-23 2826/week @ 2024-03-30 2338/week @ 2024-04-06

12,805 downloads per month
Used in 21 crates (3 directly)

MIT license

1.5MB
26K SLoC

C 24K SLoC // 0.1% comments Rust 1.5K SLoC // 0.0% comments

Little CMS bindings for Rust

Makes LCMS C API available in Rust. There's also a higher-level wrapper.

It's up to date with version 2.16, and works with older versions too. Linux, macOS and Windows are supported. Other platforms may work, too.

The crate requires Rust 1.65 or later.

Differences from the C API

This crate improves bindgen's bindings to be a bit more Rust-friendly:

  • Type names don't have the cms prefix, e.g. cmsColorSpace is ColorSpace.
    • All C function names remained the same (with the prefix, e.g. fn cmsReadTag()).
  • Enum values don't have the cmsSig prefix, e.g. cmsSigLabData is LabData.
  • Some arguments use more specific types, e.g. Intent::Perceptual enum instead of INTENT_PERCEPTUAL integer.

Dynamic vs static linking configuration

If LCMS2_LIB_DIR environmental variable is set, and the path contains either a static or dynamic library, this libary will be used regardless of other settings.

If LCMS2_STATIC environmental variable is set, it will prefer static linking instead.

The package supports "static" and "dynamic" Cargo features. If "dynamic" is enabled (the default) then it will link to system-wide LCMS2 shared library if pkg-config is installed and working correctly. Typically you will also need a lcms2-dev or similar package installed on the system.

If pkg-config doesn't work (e.g. on Windows), or the "static" feature is enabled, it will build bundled LCMS 2.15 from source instead.

For Rust build scripts using this sys crate as a dependency, Cargo will set DEP_LCMS2_INCLUDE env var to joined paths of include dirs where lcms2.h may be found. This is only relevant if you compile C code using the library directly.

Contributing

This repo uses git submodules, which can be annoying. Make sure you clone with git clone --recursive, or run:

git submodule update --init

Dependencies