buffer_image 0.3.12 copy "buffer_image: ^0.3.12" to clipboard
buffer_image: ^0.3.12 copied to clipboard

A library for modify and display rgba format image data and grayscale image data.

BufferImage #

pub package

A library for modify and display rgba format image data.

preview #

demo code:

// create ImageProvider
BufferImage bufferImage = BufferImage(100, 100);
for (int i = 0; i < 100; i++) {
    for (int j = 0; j < 100; j++) {
    bufferImage.setColor(
        i, j, Colors.primaries[(i * 100 + j) % Colors.primaries.length]);
    }
}
image = RgbaImage.fromBufferImage(bufferImage, scale: 1);
bufferImage.resize(2);
scaleImage = RgbaImage.fromBufferImage(bufferImage, scale: 1);


// display Image
Center(
    child: Column(
        mainAxisAlignment: MainAxisAlignment.spaceAround,
        children: <Widget>[
        Image(
            image: image,
        ),
        Image(
            image: scaleImage,
        ),
        ],
    ),
)

Preview

Features #

  • ✅ BufferImage for edit the pixel image
  • ✅ ImageProvider for display in Image Widget
  • ✅ Scale the image (Nearest sample mode and Bilinear sample mode is available)
  • ✅ Color/Image mask with a blend mode
  • ✅ Rotate
  • ✅ drawRect drawImage
  • ✅ clipPath drawPath
  • ✅ GrayImage & multiple GrayScale algorithm
  • 🚧 ImageProvider optimize
  • 🚧 any more...

Flutter #

This project is a starting point for a Dart package, 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, which offers tutorials, samples, guidance on mobile development, and a full API reference.

2
likes
130
pub points
73%
popularity

Publisher

verified publishershirne.com

A library for modify and display rgba format image data and grayscale image data.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on buffer_image