encodeTiffFile function

Future<bool> encodeTiffFile(
  1. String path,
  2. Image image,
  3. {bool singleFrame = false}
)

Encode an image to a TIFF file at the given path.

Implementation

Future<bool> encodeTiffFile(String path, Image image,
    {bool singleFrame = false}) async {
  if (!supportsFileAccess()) {
    return false;
  }
  final bytes = TiffEncoder().encode(image, singleFrame: singleFrame);
  return writeFile(path, bytes);
}