16#include <AUI/Common/AVector.h>
17#include <AUI/Common/AByteBuffer.h>
18#include <AUI/Util/Cache.h>
19#include <AUI/Url/AUrl.h>
20#include <AUI/IO/APath.h>
21#include "AUI/Common/AColor.h"
22#include "AUI/Traits/memory.h"
23#include "APixelFormat.h"
24#include "glm/vector_relational.hpp"
29template <auto imageFormat = APixelFormat::DEFAULT>
32template <auto imageFormat = APixelFormat::DEFAULT>
58class API_AUI_IMAGE AImageView {
62 AImageView() : mSize(0, 0) {}
65 AImageView(
const AImage& v);
79 glm::uvec2
size() const noexcept {
87 unsigned width() const noexcept {
112 return mFormat.bytesPerPixel();
127 Color
get(glm::uvec2 position)
const noexcept;
129 template <AImageViewVisitor Visitor>
130 auto visit(Visitor&& visitor)
const;
141 Color averageColor() const noexcept;
151 const
char&
rawDataAt(glm::uvec2 position) const noexcept {
160 AImage mirroredVertically()
const;
163 AImage resizedLinearDownscale(glm::uvec2 newSize)
const;
172 const char*
data() const noexcept {
187class AFormattedImageView :
public AImageView {
189 using Color = AFormattedColor<f>;
190 static constexpr int FORMAT = f;
192 constexpr int format()
const noexcept {
return f; }
194 AFormattedImageView() { mFormat = f; }
199 const Color& get(glm::uvec2 position)
const noexcept {
200 return reinterpret_cast<const Color&
>(
rawDataAt(position));
204 const Color* begin()
const noexcept {
209 const Color* end()
const noexcept {
214 AColor averageColor()
const noexcept {
216 aui::zero(accumulator);
218 for (
auto i = begin(); i != end(); ++i) {
219 accumulator +=
AColor(*i);
226template <AImageViewVisitor Visitor>
227auto AImageView::visit(Visitor&& visitor)
const {
230 switch (format() & APixelFormat::TYPE_BITS) { \
231 case APixelFormat::BYTE: \
232 return visitor(reinterpret_cast<const AFormattedImageView<v | APixelFormat::BYTE>&>(*this)); \
233 case APixelFormat::FLOAT: \
234 return visitor(reinterpret_cast<const AFormattedImageView<v | APixelFormat::FLOAT>&>(*this)); \
238 switch (
format() & APixelFormat::COMPONENT_BITS) {
239 AUI_CASE(APixelFormat::R)
240 AUI_CASE(APixelFormat::RG)
241 AUI_CASE(APixelFormat::RGB)
242 AUI_CASE(APixelFormat::RGBA)
243 AUI_CASE(APixelFormat::ARGB)
244 AUI_CASE(APixelFormat::BGRA)
Acts like std::string_view but for AByteBuffer.
Definition AByteBufferView.h:24
Represents a 4-component floating point color (RGBA).
Definition AColor.h:26
Abstract AUI exception.
Definition AException.h:28
Non-owning read-only image representation of some format.
Definition AImageView.h:58
unsigned width() const noexcept
Definition AImageView.h:87
Color get(glm::uvec2 position) const noexcept
Retrieves pixel color data.
AImage cropped(glm::uvec2 position, glm::uvec2 size) const
Crops the image, creating new image with the same format.
unsigned height() const noexcept
Definition AImageView.h:95
std::uint8_t bytesPerPixel() const noexcept
Definition AImageView.h:111
const char & rawDataAt(glm::uvec2 position) const noexcept
Retrieves reference to raw data at specified position.
Definition AImageView.h:151
AByteBufferView buffer() const noexcept
Definition AImageView.h:71
glm::uvec2 size() const noexcept
Definition AImageView.h:79
const char * data() const noexcept
Shortcut to buffer().data().
Definition AImageView.h:172
APixelFormat format() const noexcept
Definition AImageView.h:103
Owning image representation.
Definition AImage.h:25
Definition AImageView.h:36
Definition AImageView.h:45
#define AUI_ASSERT(condition)
Asserts that the passed condition evaluates to true.
Definition Assert.h:55