decodePsdFile function

Future<Image?> decodePsdFile(
  1. String path
)

Decode a PSD formatted image from a file. If the platform does not support dart:io, null will be returned.

Implementation

Future<Image?> decodePsdFile(String path) async {
  final bytes = await readFile(path);
  if (bytes == null) {
    return null;
  }
  return PsdDecoder().decode(bytes);
}