blob: 25745a7a4a1dc8b15fdc56ef4efb5f593b2b83b4 (
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
|
// 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(const 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;
}
|