blurhash 1.0.0 copy "blurhash: ^1.0.0" to clipboard
blurhash: ^1.0.0 copied to clipboard

outdated

A very compact representation of a placeholder for an image.

blurhash #

pub package

Compact representation of a placeholder for an image.

Platform Support #

Android iOS Web
✔️ ✔️ ✔️

Usage #

To use this plugin, add blurhash as a dependency in your pubspec.yaml file.

Example #

void blurHashEncode() async {
  ByteData bytes = await rootBundle.load("image.jpg");
  Uint8List pixels = bytes.buffer.asUint8List();
  var blurHash = await BlurHash.encode(pixels, 4, 3);
}

void blurHashDecode() async {
  Uint8List imageDataBytes;
  try {
    imageDataBytes = await BlurHash.decode(blurhash, 20, 12);
  } on PlatformException catch (e) {
    print(e.message);
  }
}
66
likes
0
pub points
90%
popularity

Publisher

verified publisherraincal.com

A very compact representation of a placeholder for an image.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

blurhash_web, flutter

More

Packages that depend on blurhash