27 lines
780 B
C
27 lines
780 B
C
#ifndef BITMAP_H
|
|
#define BITMAP_H
|
|
|
|
#include <stddef.h>
|
|
|
|
struct bitmap {
|
|
void *data;
|
|
size_t width;
|
|
size_t height;
|
|
};
|
|
|
|
struct bitmap bitmap_load_readable (const char *path);
|
|
struct bitmap bitmap_load_raw (const char *path);
|
|
struct bitmap bitmap_parse_readable (const char *data, int width, int height);
|
|
void bitmap_save_readable (const char *path, struct bitmap bitmap);
|
|
void bitmap_save_raw (const char *path, struct bitmap bitmap);
|
|
|
|
void bitmap_compress (const char *readable_path, const char *raw_path);
|
|
void bitmap_decompress (const char *raw_path, const char *readable_path);
|
|
|
|
char bitmap_read_bit (struct bitmap bitmap, size_t x, size_t y);
|
|
void bitmap_write_bit (struct bitmap bitmap, size_t x, size_t y, char bit);
|
|
|
|
void bitmap_discard (struct bitmap bitmap);
|
|
|
|
#endif
|