我想加载给定目录中的所有图像并排除所有不是图像的文件。
我不想简单地检查扩展名,因为存在不同的约定,例如“.jpg”和“jpeg”,而且如果 Flutter 将来支持更多图像格式,我不想手动添加新的扩展名。此外,我希望用户能够加载图像文件,即使它们没有正确的扩展名。
如何检测文件是否是(支持的)图像?
当 Flutter 尝试在 Image 小部件中显示非图像文件时,它会在控制台中打印以下错误:“Another exception was throw: Exception: Invalid image data”。不幸的是,这个错误似乎只有在 Flutter 已经在构建小部件时才会出现,因此在加载过程中尝试检测非图像,如下所示:
void getFiles(path) async {
//asyn function to get list of files
var currentDir = Directory(path);
files = [];
await for (var entity
in currentDir.list(recursive: false, followLinks: false)) {
if (entity is File) {
try {
var image = Image(image: FileImage(entity));
files.add(entity.path);
} catch (e) {
print(e);
}
}
}
}
不工作。
该应用程序的目标平台是桌面,这就是我不只是访问图库的原因。