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

close() 공개 메소드

Closes the underlying file from where the image data is being read. No operations are possible after a call to this method.
If an I/O error occurs. /// ///
public close ( ) : void
리턴 void
        public override void close()
        {
            in_Renamed.Dispose();
            in_Renamed = null;
            // Free memory
            barr[0] = null;
            barr[1] = null;
            barr[2] = null;
            buf = null;
        }