getPixel32 method

int getPixel32(
  1. num x,
  2. num y
)

Get a single RGBA pixel

Implementation

int getPixel32(num x, num y) {
  final updateBatch = BitmapDataUpdateBatch(this);
  return updateBatch.getPixel32(x, y);
}