IsValid
IsValid(Stream)
检查指定的流是否是有效的 BMP 图像
public static bool IsValid(Stream binaryContent)
范围 | 类型 | 描述 |
---|---|---|
binaryContent | Stream | 字节流,大概包含 BMP 图像 |
返回值
如果指定的流包含有效的 BMP 图像,则为 True,否则为 false
也可以看看
IsValid(string)
检查指定的 base64 编码字符串是否为有效的 BMP 图像
public static bool IsValid(string contentInBase64)
范围 | 类型 | 描述 |
---|---|---|
contentInBase64 | String | 可能是 BMP 图像的内容,采用 base64 编码的字符串形式 |
返回值
如果指定的字符串包含有效的 BMP 图像,则为 True,否则为 false