CSJ2K.j2k.image.input.ImgReader.nextTile C# (CSharp) 메소드

nextTile() 공개 메소드

Advances to the next tile, in standard scan-line order (by rows then columns). A NoNextElementException is thrown if the current tile is the last one (i.e. there is no next tile). This default implementation assumes no tiling, so NoNextElementException() is always thrown.
public nextTile ( ) : void
리턴 void
        public virtual void nextTile()
        {
            throw new NoNextElementException();
        }