jpegxl-rs 0.1.0

Safe Rust wrapper for JPEG XL reference implementation
docs.rs failed to build jpegxl-rs-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: jpegxl-rs-0.10.2+libjxl-0.10.2

jpegxl-rs

jpegxl-rs is a safe wrapper over jpeg-xl library. Check out the original library here and the bindings here.

Building

Install the jpeg-xl library system-wide or specify PKG_CONFIG_PATH to search for needed paths. Optionally, you can overwrite the include path and lib path with DEP_JPEGXL_INCLUDE and DEP_JPEGXL_LIB respectively.

If you want to build the library within cargo, enable build-jpegxl features for jpegxl-sys in your Cargo.toml.

You need to have a working llvm environment. Note that this will link to libc++ by default (since you already use llvm). You can modify it by setting DEP_JPEGXL_CXXLIB.

Usage

Check out testing in src/lib.rs for some examples.

image crate integration (WIP)

Enable with-image feature. Then you can use image's decoder interface.