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