encodeCurFile function

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

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

Implementation

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