mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
This implements basic parsing of sixel data. Lots of limitations and temporary solutions as this is still work-in-progress: * Maximum image size hardcoded to 800x800 * No HLS color format support * Image is always rendered at 0x0 in the terminal
7 lines
169 B
C
7 lines
169 B
C
#pragma once
|
|
|
|
#include "terminal.h"
|
|
|
|
void sixel_init(struct terminal *term);
|
|
void sixel_put(struct terminal *term, uint8_t c);
|
|
void sixel_unhook(struct terminal *term);
|