pixel_color_image 1.0.1 copy "pixel_color_image: ^1.0.1" to clipboard
pixel_color_image: ^1.0.1 copied to clipboard

Pick the pixel color of a image. Super simple and Easy to use.

Pixel Color Image #

https://pub.dev/packages/pixel_color_image



Usage #

1. Get image bytes #

  • asset image
final imageBytes = await getImageBytesAsset("images/xxx.png");
  • url image
final imageBytes = await getImageBytesUrl("http://xxx.com/xxx.png");

2. Create widget #

final pixelColorImage = PixelColorImage(
  imageBytes: imageBytes,
  onHover: onHover,
  onTap: onTap,
);

3. these functions are called #

/// Called while Hoverring
void onHover(int x, int y, Color color) async {
  debugPrint('Hover x: $x, y: $y, color: $color');
}

/// Called when tap
void onTap(int x, int y, Color color) async {
  debugPrint('Tap x: $x, y: $y, color: $color');
}

🎉 any issues, requests, contributions are welcomed!


6
likes
0
pub points
68%
popularity

Publisher

verified publisherflut.rbdog.biz

Pick the pixel color of a image. Super simple and Easy to use.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http, image

More

Packages that depend on pixel_color_image