This commit is contained in:
手瓜一十雪
2025-05-12 19:27:01 +08:00
parent 3f0730ed4f
commit 690c073328

View File

@@ -192,7 +192,9 @@ class BmpParser implements ImageParser {
stream.once('error', reject);
stream.once('readable', () => {
const buf = stream.read(26) as Buffer;
if (!buf || buf.length < 26) return resolve(undefined);
if (!buf || buf.length < 26) {
return resolve(undefined);
}
if (this.canParse(buf)) {
const width = buf.readUInt32LE(18);
const height = buf.readUInt32LE(22);