copyCrop method

Image copyCrop(
  1. int x,
  2. int y,
  3. int w,
  4. int h,
)

Implementation

Image copyCrop(int x, int y, int w, int h) =>
    Image.fromDecodedImage(img.copyCrop(_decodedBytes!, x, y, w, h));