summaryrefslogtreecommitdiff
path: root/src/mbgl/sprite/sprite_parser.hpp
blob: f2e7358ac2fb17eeccabe5310d620275a3e48225 (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
#pragma once

#include <mbgl/style/image.hpp>

#include <memory>

namespace mbgl {

// Extracts an individual image from a spritesheet from the given location.
std::unique_ptr<style::Image> createStyleImage(const std::string& id,
                                               const PremultipliedImage&,
                                               uint32_t srcX,
                                               uint32_t srcY,
                                               uint32_t srcWidth,
                                               uint32_t srcHeight,
                                               double ratio,
                                               bool sdf,
                                               style::ImageStretches&& stretchX = {},
                                               style::ImageStretches&& stretchY = {},
                                               optional<style::ImageContent> content = nullopt);

// Parses an image and an associated JSON file and returns the sprite objects.
std::vector<Immutable<style::Image::Impl>> parseSprite(const std::string& image, const std::string& json);

} // namespace mbgl