1个不稳定版本

0.1.0 2021年9月16日

#1596算法

每月42次下载

自定义许可证

17KB
458

blurhash-fast

使用rayon实现,对Blurhash进行纯Rust实现,以实现更好的性能。

$ cargo add blurhash-fast

Blurhash是一种将图像编码为短字符串的算法。当您将字符串解码回图像时,您将获得代表原始图像的颜色渐变。

编码

use blurhash::encode;
use image::GenericImageView;

fn main() {
  let img = image::open("image.png").unwrap();

  let (width, height) = img.dimensions();

  let blurhash =
      encode(
          4, 3,
          width, height,
          &img.to_rgba8(),
      );
}

解码

use blurhash::decode;

let pixels =
    decode(
        "LBAdAqof00WCqZj[PDay0.WB}pof",
        50,
        50,
        1.0,
    );

注意

此项目基于 blurhash-rs

许可证

MIT许可证

Copyright (c) 2019 Raincal
Copyright (c) 2021 Styla GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

依赖关系

~1.5MB
~25K SLoC