https://github.com/redstrate/qtblurhash
Qt implementation of BlurHash
https://github.com/redstrate/qtblurhash
Last synced: 11 months ago
JSON representation
Qt implementation of BlurHash
- Host: GitHub
- URL: https://github.com/redstrate/qtblurhash
- Owner: redstrate
- Created: 2024-07-20T14:36:42.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-20T15:21:25.000Z (almost 2 years ago)
- Last Synced: 2025-03-10T18:09:46.754Z (about 1 year ago)
- Language: C++
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSES/BSD-2-Clause.txt
Awesome Lists containing this project
README
# QtBlurHash
A modern Qt/C++ implementation of [BlurHash](https://github.com/woltapp/blurhash). In comparison to other implementations, this uses Qt and modern C++ as much as possible. It also comes with a image provider (for use in QML) and a full test suite.
## Usage
Copy the source files under `src/` into your application. The test suite and image provider are optional and located under `autotests/` and `imageprovider/` respectively.
This requires Qt6 and C++20, but it can be made to compile for C++17 with little changes.
## Credits
* [Nheko's Blurhash](https://github.com/Nheko-Reborn/blurhash) as inspiration and the base for the implementation.
* Tobias Fella for the original image provider.