summaryrefslogtreecommitdiff
path: root/include/mbgl/util/image.hpp
blob: b8e018f696b24e8b23a171af8c60f1ff643541f7 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef MBGL_UTIL_IMAGE
#define MBGL_UTIL_IMAGE

#include <string>
#include <memory>

namespace mbgl {

enum ImageAlphaMode {
    Unassociated,
    Premultiplied
};

template <ImageAlphaMode Mode>
class Image {
public:
    Image() {}

    Image(size_t w, size_t h)
        : width(w),
          height(h),
          data(std::make_unique<uint8_t[]>(size())) {}

    size_t stride() const { return width * 4; }
    size_t size() const { return width * height * 4; }

    size_t width = 0;
    size_t height = 0;
    std::unique_ptr<uint8_t[]> data;
};

using UnassociatedImage = Image<ImageAlphaMode::Unassociated>;
using PremultipliedImage = Image<ImageAlphaMode::Premultiplied>;

// TODO: don't use std::string for binary data.
PremultipliedImage decodeImage(const std::string&);
std::string encodePNG(const PremultipliedImage&);

}

#endif