astro-ghostcms/.pnpm-store/v3/files/a1/b92ab961dd2c3325fec34082ab2...

12 lines
277 B
Plaintext

import { toUTF8String, readInt32LE, readUInt32LE } from "./utils.js";
const BMP = {
validate: (input) => toUTF8String(input, 0, 2) === "BM",
calculate: (input) => ({
height: Math.abs(readInt32LE(input, 22)),
width: readUInt32LE(input, 18)
})
};
export {
BMP
};