New() static private method

static private New ( int width, int height, byte bytes ) : IImage
width int
height int
bytes byte
return IImage
Example #1
0
        public T As <T>()
        {
            var image = ImageFactory.New(Width, Height, ToBytes(Width, Height, NumberOfComponents, _byteScaling, Data));

            return(image.As <T>());
        }