CSJ2K.Util.WriteableBitmapImageCreator.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 WriteableBitmapImage(width, height, bytes);
        }