flutter_photon_rs 0.0.1
flutter_photon_rs: ^0.0.1 copied to clipboard
Dart ffi to photon library, an image processing library written in rust.
Photon For Flutter #
flutter_photon_rs
is dart ffi to photon
library, Photon is a high-performance Rust image processing library, which compiles to WebAssembly, allowing for safe, blazing-fast image processing both natively and on the web.
Supported platforms:
- Android
- IOS
π» Usage #
import 'package:flutter_photon_rs/flutter_photon_rs.dart';
import 'package:image_picker/image_picker.dart';
// Use ImagePicker to get image from source and read as bytes
final _picker = ImagePicker();
final image = await _picker.getImage(
source: ImageSource.gallery,
);
if (image != null) {
final imageBytes = await image.readAsBytes();
// returns Uint8List which you can use to store,
// or show on Image.memory() widget
final bytes = await Photon.process(
bytes: imageBytes,
filters: [
Monochrome.grayscale(),
Convolution.gaussianBlur(
radius: 20,
),
Transform.flipH(),
],
outputFormat: OutputFormat.Jpeg,
);
}
π Features #
- β Implement Photon rust lib all features
- β Fix Exif Reading (Image Rotation) Issue
- β Make Proper README.md with Documentation
- β Publish on pub.flutter-io.cn
- β Add Support For IOS
- β Write Rust And Flutter Test
- β Benchmark
- β Refactor Code for readability and efficiency