23 [[nodiscard]]
virtual std::size_t
Width()
const = 0;
30 [[nodiscard]]
virtual std::size_t
Height()
const = 0;
42 [[nodiscard]]
virtual Rgba32 At(std::size_t i)
const = 0;
51 [[nodiscard]]
virtual Rgba32 At(std::size_t row, std::size_t col)
const = 0;
virtual std::size_t Height() const =0
Gets the height of this Png in pixels.
virtual std::size_t Width() const =0
Gets the width of this Png in pixels.
virtual Rgba32 At(std::size_t i) const =0
Fetches the Rgba32 color value at a given one-dimensional pixel index.
virtual Rgba32 At(std::size_t row, std::size_t col) const =0
Fetches the Rgba32 color value at a given row and column.