Image.this

Copy constructor.

  1. this()
  2. this(Image copy, bool deepCopy)
    class Image
    pure
    this
    (,
    bool deepCopy = false
    )
  3. this(size_t width, size_t height, ImageFormat format, BitDepth depth, ubyte[] data)

Parameters

copy Image

Input image, which is copied into this image structure.

deepCopy bool

if false (default) the data array will be referenced from copy, esle values will be copied to newly allocated array.

Meta