CSJ2K.j2k.image.input.ImgReaderPPM.isOrigSigned C# (CSharp) 메소드

isOrigSigned() 공개 메소드

Returns true if the data read was originally signed in the specified component, false if not. This method always returns false since PPM data is always unsigned.
public isOrigSigned ( int c ) : bool
c int The index of the component, from 0 to N-1. /// ///
리턴 bool
        public override bool isOrigSigned(int c)
        {
            // Check component index
            if (c < 0 || c > 2)
                throw new System.ArgumentException();
            return false;
        }