BitMiracle.LibTiff.Classic.Tiff.Close C# (CSharp) Method

Close() public method

Closes a previously opened TIFF file.
This method closes a file or stream that was previously opened with Open(string, string) or ClientOpen(string, string, object, BitMiracle.LibTiff.Classic.TiffStream). Any buffered data are flushed to the file/stream, including the contents of the current directory (if modified); and all resources are reclaimed.
public Close ( ) : void
return void
        public void Close()
        {
            Flush();

            m_stream.Close(m_clientdata);

            if (m_fileStream != null)
                m_fileStream.Close();
        }
Tiff