isImageFromBytes static method
从字节数组判断是否为图片
Implementation
static bool isImageFromBytes(Uint8List bytes) {
// 检查文件头部标识
if (bytes.length >= 2 &&
((bytes[0] == 0xFF && bytes[1] == 0xD8) || // JPEG
(bytes[0] == 0x89 && bytes[1] == 0x50))) {
// PNG
return true;
}
return false;
}