CSJ2K.Util.BitmapImageCreator.Create C# (CSharp) Метод

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

public Create ( int width, int height, byte bytes ) : IImage
width int
height int
bytes byte
Результат IImage
        public IImage Create(int width, int height, byte[] bytes)
        {
            return new BitmapImage(width, height, bytes);
        }