getImageInfo method
Implementation
@override
Future<ImageMeta> getImageInfo(String path) async {
try {
return await FfmpegImage.info(path);
} on CompressException {
rethrow;
} catch (e) {
throw ImageCompressException(CompressErrorCode.imageInfoFailed, '$e');
}
}