Crates.io

Fast(er) BlurHash

A faster implementation of the BlurHash algorithm used to generate better looking placeholder for websites and mobile apps. This crates encode and decode functions minimizes the number of allocated vectors to reduce the memory footprint. The base83 encode and decode are also both very fast!

Credits

The original implementation of the BlurHash algorithm can be found here.

Usage

Installation

fast_blurhash is available on crates.io

Use the cargo add command: shell cargo add fast_blurhash

or add the crate in your Cargo.toml: toml [dependencies] fast_blurhash = "1"

Generating a blurhash from an image

Generating a blurhash from an image: ```rust use fastblurhash::computedct;

let (width, height) = todo!("Get image width and height"); let image: Vec = todo!("Load the image"); let blurhash = computedct(&image, width, height, 3, 4).intoblurhash(); ```

You can also pass a long-enough iterator to avoid copying data: ```rust use fastblurhash::computedct;

let (width, height) = todo!("Get image width and height"); let image: Vec = todo!("Load the image"); let blurhash = computedctiter(image.iter(), width, height, 3, 4).into_blurhash(); ```

Supported types to be used with compute_dct: | Type | Alias | Disposition | Notes | |---|---|---|---| | [f32; 3] | Linear | [Red, Green, Blue] | Channels are in linear space | | [u8; 3], &[u8; 3] | Rgb | [Red, Green, Blue] | | | [u8; 4], &[u8; 4] | Rgba | [Red, Green, Blue, Alpha] | Alpha is ignored | | u32 | | 0xAARRGGBB where A is alpha | Alpha is ignored |

This crate also supports using your custom types (see the trait AsLinear and examples in the documentation).

Generating a placeholder from a blurhash

Generating an image from a blurhash: ```rust use fast_blurhash::decode;

let blurhash = "LlMF%n00%#MwS|WCWEM{R*bbWBbH"; let image: Vec = decode(&blurhash, 1.).unwrap().to_rgba(32, 32); ```

Available generation functions: | Function | Return type | Disposition | Notes | |---|---|---|---| | toimage<\T>(width, height, fn(Linear) -> T) | Vec<\T> | Linear: [Red, Green, Blue] | Linear is a builtin type that represents a color in linear space. | | torgb8(width, height) | Vec<[u8; 3]> | [Red, Green, Blue] | | | torgba8(width, height) | Vec<[u8; u4]> | [Red, Green, Blue, Alpha] | Alpha will always be 255 | | torgba(width, height) | Vec<\u32> | 0xAARRGGBB where A is alpha | Alpha will always be 255 |

Documentation

More documentation is available in rust docs.

TODO

Contribution & Feedback

If you have any feedback, please open an issue. If you encounter any bugs or unwanted behaviour, please open an issue.

This projet is open to contributions, feel free to submit your pull requests!

License

fast-blurhash is available under the Apache License 2.0 license. See the LICENSE file for more info.