fast_image_editor 1.0.0
fast_image_editor: ^1.0.0 copied to clipboard
Native C image editing for Flutter. Blur, sepia, saturation, brightness, contrast, sharpen, grayscale with region-based effects via FFI.
Changelog #
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
1.0.0 - 2026-03-13 #
Added #
- High-quality bicubic image resizing via
flutter_bicubic_resizeresize/resizeAsyncwith configurable filter, edge mode, crop- Re-exported resize enums:
BicubicFilter,EdgeMode,CropAnchor,CropAspectRatio
- Radial region effects (
RadialRegion) — apply filters to circular areas
Changed #
- Promoted to stable 1.0.0 release
0.1.0 - 2025-01-01 #
Added #
- Initial release with 7 image filters:
blur— Box blur with Gaussian approximation (3 passes)sepia— Sepia tone with adjustable intensitysaturation— Color saturation adjustmentbrightness— Brightness adjustmentcontrast— Contrast adjustmentsharpen— Unsharp mask sharpeninggrayscale— Luminance-based grayscale conversion
- Region-based effects (apply filter to specific areas of the image)
- Sync and async (Isolate) variants for every filter
- JPEG and PNG support with automatic format detection
- Native C implementation via FFI for maximum performance
- iOS and Android platform support