uGIF.LZWEncoder.NextPixel C# (CSharp) Method

NextPixel() private method

private NextPixel ( ) : int
return int
        int NextPixel()
        {
            if (curPixel == pixAry.Length)
                return EOF;
            curPixel++;
            return pixAry [curPixel - 1] & 0xff;
        }