CSJ2K.j2k.image.ImgDataJoiner.close C# (CSharp) Method

close() public method

Closes the underlying file or network connection from where the image data is being read.
If an I/O error occurs. ///
public close ( ) : void
return void
        public void close()
        {
            foreach (var reader in imageData)
            {
                reader.close();
            }
        }