decodeTiff function

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

Decode a TIFF formatted image.

Implementation

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