summaryrefslogtreecommitdiff
path: root/include/mbgl/util/image.hpp
blob: dc8f6a8150998212d04d6825146c6f02e77c2aa3 (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
#ifndef MBGL_UTIL_IMAGE
#define MBGL_UTIL_IMAGE

#include <string>
#include <cstring>
#include <stdexcept>

namespace mbgl {
namespace util {

std::string compress_png(int width, int height, void *rgba, bool flip = false);


class Image {
public:
    Image(const std::string &img, bool flip = false);
    ~Image();

    inline const char *getData() const { return img; }
    inline uint32_t getWidth() const { return width; }
    inline uint32_t getHeight() const { return height; }

private:
    // loaded image dimensions
    uint32_t width = 0, height = 0;

    // the raw image data
    char *img = nullptr;

};


}
}

#endif