blurhash_dart 0.2.2 blurhash_dart: ^0.2.2 copied to clipboard
A pure dart implementation of the BlurHash algorithm. This package provides both an encoder and an encoder for blurhashes. The encode/decoder routines work on raw pixels in RGBA32 format - without any [...]
import 'dart:typed_data';
import 'package:blurhash_dart/blurhash_dart.dart';
void main() {
String blurHash = "LEHV6nWB2yk8pyo0adR*.7kCMdnj";
Uint8List pixels = decodeBlurHash(blurHash, 35, 20);
print("Do something with the $pixels...");
}