CSJ2K.j2k.image.input.ImgReaderPGX.getFixedPoint C# (CSharp) 메소드

getFixedPoint() 공개 메소드

Returns the position of the fixed point in the specified component (i.e. the number of fractional bits), which is always 0 for this ImgReader.
public getFixedPoint ( int c ) : int
c int The index of the component. /// ///
리턴 int
        public override int getFixedPoint(int c)
        {
            // Check component index
            if (c != 0)
                throw new System.ArgumentException();
            return 0;
        }