CSJ2K.Util.BitmapImageCreator.Create C# (CSharp) Method

Create() public method

public Create ( int width, int height, byte bytes ) : IImage
width int
height int
bytes byte
return IImage
        public IImage Create(int width, int height, byte[] bytes)
        {
            return new BitmapImage(width, height, bytes);
        }