1
0
mirror of https://github.com/one-among-us/data.git synced 2024-11-22 19:24:51 +08:00
one-among-us-data/scripts/blurhash.ts
2024-11-17 23:27:16 +08:00

7 lines
247 B
TypeScript

import { encode } from "blurhash";
import { getSync } from '@andreekeberg/imagedata';
export async function encodeBlur(path: string): Promise<string> {
const data = getSync(path);
return encode(data.data, data.width, data.height, 4, 4);
}