4#include "mygl_export.h"
17 std::shared_ptr<uint8_t> p_data;
20 unsigned short m_channels{};
35 MYGL_EXPORT
Image(
const std::string& filename,
bool flip =
false,
int desiredChannels = 0);
45 MYGL_EXPORT
Image(
const uint8_t*
data,
size_t width,
size_t height,
int numberOfChannels,
bool flip =
false);
47 MYGL_EXPORT
~Image() =
default;
56 MYGL_EXPORT
bool load(
const std::string& filename,
bool flip =
false,
int desiredChannels = 0);
67 MYGL_EXPORT
bool load(
const uint8_t*
data,
size_t width,
size_t height,
int numberOfChannels,
bool flip =
false);
78 MYGL_EXPORT uint8_t*
data() const noexcept;
A class for manipulating imges.
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.