decodeTiffAnimation function

Animation? decodeTiffAnimation(
  1. List<int> bytes
)

Decode an multi-image (animated) TIFF file. If the tiff doesn't have multiple images, the animation will contain a single frame with the tiff's image.

Implementation

Animation? decodeTiffAnimation(List<int> bytes) =>
    TiffDecoder().decodeAnimation(bytes);