astro-ghostcms/.pnpm-store/v3/files/3e/b701afaecc6fb5edb011aebb06a...

16 lines
297 B
Plaintext

import { readUInt16LE } from "./utils.js";
const TGA = {
validate(input) {
return readUInt16LE(input, 0) === 0 && readUInt16LE(input, 4) === 0;
},
calculate(input) {
return {
height: readUInt16LE(input, 14),
width: readUInt16LE(input, 12)
};
}
};
export {
TGA
};