decodePsd function

Image? decodePsd(
  1. List<int> bytes
)

Decode a Photoshop PSD formatted image.

Implementation

Image? decodePsd(List<int> bytes) => PsdDecoder().decodeImage(bytes);