File size: 269 Bytes
7e3630c | 1 2 3 4 5 6 7 8 9 | import { image2sixel } from "sixel";
import type { PixelData } from "./types.js";
export function renderSixel(pixels: PixelData): string {
const { data, info } = pixels;
const u8Data = new Uint8Array(data);
return image2sixel(u8Data, info.width, info.height);
}
|