boost::gil::image::recreate
//////////////////
Synopses
Declared in <boost/gil/image.hpp>
//////////////////
void
recreate(
point_t const& dims,
std::size_t alignment = 0);
void
recreate(
x_coord_t width,
y_coord_t height,
std::size_t alignment = 0);
void
recreate(
point_t const& dims,
std::size_t alignment,
Alloc const alloc_in);
void
recreate(
point_t const& dims,
Pixel const& p_in,
std::size_t alignment = 0);
void
recreate(
x_coord_t width,
y_coord_t height,
std::size_t alignment,
Alloc const alloc_in);
void
recreate(
x_coord_t width,
y_coord_t height,
Pixel const& p_in,
std::size_t alignment = 0);
void
recreate(
point_t const& dims,
Pixel const& p_in,
std::size_t alignment,
Alloc const alloc_in);
void
recreate(
x_coord_t width,
y_coord_t height,
Pixel const& p_in,
std::size_t alignment,
Alloc const alloc_in);
Created with MrDocs