astro-ghostcms/.pnpm-store/v3/files/60/72b5953352666549faf0384507c...

12 lines
257 B
Plaintext

import { toUTF8String, readUInt32BE } from "./utils.js";
const PSD = {
validate: (input) => toUTF8String(input, 0, 4) === "8BPS",
calculate: (input) => ({
height: readUInt32BE(input, 14),
width: readUInt32BE(input, 18)
})
};
export {
PSD
};