encodePvrFile function

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

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

Implementation

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