decodeTiff function

Image decodeTiff(
  1. Uint8List bytes, {
  2. TiffDecodeOptions? options,
})

Decodes the first image-file directory of a baseline TIFF image.

Implementation

Image decodeTiff(
  Uint8List bytes, {
  TiffDecodeOptions? options,
}) => decodeImage(
  bytes,
  options: options,
);