Decode a raw PSD image without rendering it to a flat image.
PsdImage? decodePsd(List<int> bytes) { final psd = PsdImage(bytes); if (!psd.decode()) { return null; } return psd; }