CSJ2K.j2k.image.input.ImgReaderPPM.close C# (CSharp) Method

close() public method

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
return void
        public override void close()
        {
            in_Renamed.Dispose();
            in_Renamed = null;
            // Free memory
            barr[0] = null;
            barr[1] = null;
            barr[2] = null;
            buf = null;
        }