blob: 5576d16a54858c3a472751d54191849b08fdb4c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <def.h>
#include <libgui/bmp.h>
#include <mem.h>
#include <print.h>
#include <sys.h>
struct bmp *bmp_load(const char *path)
{
void *buf = sread(path);
if (!buf)
return NULL;
struct bmp_header *h = buf;
if (h->signature[0] != 'B' || h->signature[1] != 'M')
return NULL;
// TODO: Support padding with odd widths
struct bmp_info *info = (struct bmp_info *)((u32)buf + sizeof(*h));
struct bmp *bmp = malloc(sizeof(*bmp));
bmp->size.x = info->width;
bmp->size.y = info->height;
bmp->data = (u8 *)((u32)buf + h->offset);
bmp->bpp = info->bpp;
bmp->pitch = bmp->size.x * (bmp->bpp >> 3);
return bmp;
}
|