Axiom.Media.PixelBox.PixelBox C# (CSharp) Метод

PixelBox() публичный Метод

Constructor providing width, height and depth. This constructor assumes the pixel data is laid out consecutively in memory. (this means row after row, slice after slice, with no space in between)
public PixelBox ( int width, int height, int depth, PixelFormat format, IntPtr data ) : System
width int Width of the region
height int Height of the region
depth int Depth of the region
format PixelFormat Format of this buffer
data System.IntPtr Pointer to the actual data
Результат System
		public PixelBox( int width, int height, int depth, PixelFormat format, IntPtr data )
			: base( 0, 0, 0, width, height, depth )
		{
			this.format = format;
			this.data = data;
			this.offset = 0;
			SetConsecutive();
		}

Same methods

PixelBox::PixelBox ( ) : System
PixelBox::PixelBox ( BasicBox extents, PixelFormat format ) : System
PixelBox::PixelBox ( BasicBox extents, PixelFormat format, IntPtr data ) : System
PixelBox::PixelBox ( int width, int height, int depth, PixelFormat format ) : System