The pixel_buffer specialization for unpacked pixels. More...
#include <pixel_buffer.hpp>
Public Types | |
typedef row_traits < std::vector< pixel > > | row_traits |
typedef std::vector< pixel > | row_type |
A row of pixel data. More... | |
Public Member Functions | |
pixel_buffer () | |
pixel_buffer (size_t width, size_t height) | |
size_t | get_height () const |
pixel | get_pixel (size_t x, size_t y) const |
Returns a pixel at (x,y) position. More... | |
row_type & | get_row (size_t index) |
Returns a reference to the row of image data at specified index. More... | |
row_type const & | get_row (size_t index) const |
Returns a const reference to the row of image data at specified index. More... | |
size_t | get_width () const |
row_type & | operator[] (size_t index) |
The non-checking version of get_row() method. More... | |
row_type const & | operator[] (size_t index) const |
The non-checking version of get_row() method. More... | |
void | put_row (size_t index, row_type const &r) |
Replaces the row at specified index. More... | |
void | resize (size_t width, size_t height) |
Resizes the pixel buffer. More... | |
void | set_pixel (size_t x, size_t y, pixel p) |
Replaces a pixel at (x,y) position. More... | |
Protected Types | |
typedef std::vector< row_type > | row_vec |
Protected Attributes | |
size_t | m_height |
row_vec | m_rows |
size_t | m_width |
The pixel_buffer specialization for unpacked pixels.
|
inherited |
|
inherited |
A row of pixel data.
|
protectedinherited |
|
inline |
|
inline |
|
inlineinherited |
|
inlineinherited |
Returns a pixel at (x,y) position.
|
inlineinherited |
Returns a reference to the row of image data at specified index.
Checks the index before returning a row: an instance of std::out_of_range is thrown if index
is greater than height
.
|
inlineinherited |
Returns a const reference to the row of image data at specified index.
The checking version.
|
inlineinherited |
|
inlineinherited |
The non-checking version of get_row() method.
|
inlineinherited |
The non-checking version of get_row() method.
|
inlineinherited |
Replaces the row at specified index.
|
inlineinherited |
Resizes the pixel buffer.
If new width or height is greater than the original, expanded pixels are filled with value of pixel().
|
inlineinherited |
Replaces a pixel at (x,y) position.
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |