blurhash_dart 1.2.1
blurhash_dart: ^1.2.1 copied to clipboard
A pure dart implementation of the BlurHash algorithm. This package provides both an encoder and a decoder, as well as some utility extensions.
Changelog #
1.2.1 #
- Fix crash for some specific
Image
s by using an pixel iterator instead of raw byte access.
1.2.0 #
- Update image dependency to >=4.0.8
1.1.0 #
- Improve performance of
BlurHash.encode
1.0.2 #
- Add note in readme on usage with Flutter
- Fix incorrect precondition in
BlurHash.encode
1.0.1 #
- Fix missing export for exception types
1.0.0 #
- Migrated to null-safety
- Deprecated:
encodeBlurHash
anddecodeBlurHash
are now deprecated Please useBlurHash.encode
andBlurHash.decode
instead - Added BlurHash extension methods
0.2.3 #
- Make the pub.dev analysis tool happy
- Formatting
0.2.2 #
- Fix minor style issues
- Make the pub.dev analysis tool happy by providing a longer description
0.2.1 #
- Change import name as suggested by pub publish tool
0.2.0 #
- Add support for encoding blurhashes
- Decoder now returns raw pixels in RGBA32
0.1.0 #
- First release