MyGL
Loading...
Searching...
No Matches
Image.hpp
1#ifndef MYGL_IMAGE
2#define MYGL_IMAGE
3
4#include "mygl_export.h"
5#include <memory>
6#include <string>
7#include <cstdint>
8
9namespace my
10{
14 class Image
15 {
16 private:
17 std::shared_ptr<uint8_t> p_data;
18 size_t m_width{};
19 size_t m_height{};
20 unsigned short m_channels{};
21
22 public:
27 MYGL_EXPORT Image() = default;
28
35 MYGL_EXPORT Image(const std::string& filename, bool flip = false, int desiredChannels = 0);
36
45 MYGL_EXPORT Image(const uint8_t* data, size_t width, size_t height, int numberOfChannels, bool flip = false);
46
47 MYGL_EXPORT ~Image() = default;
48
56 MYGL_EXPORT bool load(const std::string& filename, bool flip = false, int desiredChannels = 0);
57
67 MYGL_EXPORT bool load(const uint8_t* data, size_t width, size_t height, int numberOfChannels, bool flip = false);
68
73 MYGL_EXPORT bool isUsable() const noexcept;
74
78 MYGL_EXPORT uint8_t* data() const noexcept;
79
84 MYGL_EXPORT size_t getWidth() const noexcept;
85
90 MYGL_EXPORT size_t getHeight() const noexcept;
91
96 MYGL_EXPORT int getChannels() const noexcept;
97 };
98} // namespace my
99
100#endif // MYGL_IMAGE
A class for manipulating imges.
Definition Image.hpp:15
MYGL_EXPORT bool load(const uint8_t *data, size_t width, size_t height, int numberOfChannels, bool flip=false)
Loads an image from an array of pixels.
MYGL_EXPORT bool load(const std::string &filename, bool flip=false, int desiredChannels=0)
Loads an image stored in a file.
MYGL_EXPORT size_t getWidth() const noexcept
Indicates the image's width.
MYGL_EXPORT Image()=default
Default constructor This constructor does not produce a valid Image.
MYGL_EXPORT int getChannels() const noexcept
Indicates the number of channels in the image.
MYGL_EXPORT size_t getHeight() const noexcept
Indicates the image's height.
MYGL_EXPORT Image(const std::string &filename, bool flip=false, int desiredChannels=0)
Creates an Image from a file.
MYGL_EXPORT Image(const uint8_t *data, size_t width, size_t height, int numberOfChannels, bool flip=false)
Loads an image from an array of pixels.
MYGL_EXPORT bool isUsable() const noexcept
Tells whether the image is usable.
MYGL_EXPORT uint8_t * data() const noexcept
Returns a pointer to the pixel array.
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10