image_bus 0.1.0 copy "image_bus: ^0.1.0" to clipboard
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);
0
likes
140
pub points
0%
popularity

Publisher

verified publisherlaihz.tech

some convenience functions for manipulate image with a not bad performance.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on image_bus