Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wasabia/image_lut
image filter 3D LUT for 512x512
https://github.com/wasabia/image_lut
Last synced: 5 days ago
JSON representation
image filter 3D LUT for 512x512
- Host: GitHub
- URL: https://github.com/wasabia/image_lut
- Owner: wasabia
- License: other
- Created: 2020-01-29T04:49:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-29T14:11:28.000Z (almost 5 years ago)
- Last Synced: 2024-11-01T18:42:30.252Z (about 2 months ago)
- Language: Dart
- Homepage:
- Size: 586 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# image_lut
A new Flutter package project.
```
final lut = Lut.loadLut("./lut02.jpg");final image_file = File("./demo.jpg");
final image = decodeImage(image_file.readAsBytesSync());final data = await lut.filter(image.getBytes());
File file2 = File("./demo-result-2.jpg");
final image2 = Image.fromBytes(image.width, image.height, data);
file2.writeAsBytesSync(encodeJpg(image2));
```## Getting Started
This project is a starting point for a Dart
[package](https://flutter.dev/developing-packages/),
a library module containing code that can be shared easily across
multiple Flutter or Dart projects.For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.