astro-ghostcms/.pnpm-store/v3/files/77/b5fba4de6b0f4897ec37a6cebc1...

12 lines
243 B
Plaintext
Raw Normal View History

2024-02-20 00:35:26 +00:00
import { readUInt32LE } from "./utils.js";
const DDS = {
validate: (input) => readUInt32LE(input, 0) === 542327876,
calculate: (input) => ({
height: readUInt32LE(input, 12),
width: readUInt32LE(input, 16)
})
};
export {
DDS
};