image_bus 0.1.0
image_bus: ^0.1.0 copied to clipboard
some convenience functions for manipulate image with a not bad performance.
image_bus #
this is a package, use with care.
provider a convenience way to manipulate images 🖼️.
Getting Started #
final imageBytes = File("some_image.png").readAsBytesSync();
final Size size = await ImageBus(imageBytes).size();
final Uint8List? resizeImageBytes = await ImageBus(imageBytes).resize(maxWidth: 1920, maxHeight: 1920);
final Uint8List? cropImageBytes = await ImageBus(imageBytes).crop(0, 0, 100, 100);