tiffDecode static method

Image? tiffDecode(
  1. Uint8List bytes,
  2. {int? frame}
)

Implementation

static img.Image? tiffDecode(Uint8List bytes, {int? frame}) =>
    (img.TiffDecoder()).decode(bytes, frame: frame);