diff options
Diffstat (limited to 'libgui/bmp.c')
-rw-r--r-- | libgui/bmp.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libgui/bmp.c b/libgui/bmp.c new file mode 100644 index 0000000..0b08aeb --- /dev/null +++ b/libgui/bmp.c @@ -0,0 +1,28 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#include <bmp.h> +#include <def.h> +#include <mem.h> +#include <print.h> +#include <sys.h> + +struct bmp *bmp_load(char *path) +{ + void *buf = read(path); + if (!buf) + return NULL; + + struct bmp_header *h = buf; + if (h->signature[0] != 'B' || h->signature[1] != 'M') + return NULL; + + struct bmp_info *info = (struct bmp_info *)((u32)buf + sizeof(*h)); + struct bmp *bmp = malloc(sizeof(*bmp)); + bmp->width = info->width; + bmp->height = info->height; + bmp->data = (u8 *)((u32)buf + h->offset); + bmp->bpp = info->bpp; + bmp->pitch = bmp->width * (bmp->bpp >> 3); + + return bmp; +} |