Image processing for Flutter with the capabilities of C++
Important
This plugin is not publicly available (on pub.dev) as the image package covers the same features and more. But you can use it on your own if you wish.
- Download this repository and add it to your Flutter project inside the
packages/
folder. - Include it in your dependencies inside
pubspec.yaml
:dependencies: pictify: path: packages/pictify
- Run
flutter pub get
to get the related dependencies and you're done!
✅ Change image brightness
✅ Turn image to grayscale
✅ Turn image to negative
✅ Filter color by RGB channels
✅ Change image contrast (only available in grasycale by now)
✅ Apply a threshold to image (converting it to black&white)
✅ Change each RGB channel intensity independently
Don't forget to check out the example app inside
example/main.dart
.