CSJ2K.j2k.image.output.ImgWriterPGX.flush C# (CSharp) Method

flush() public method

Writes all buffered data to the file or resource.
If an I/O error occurs. /// ///
public flush ( ) : void
return void
        public override void flush()
        {
            // No flush is needed since we use RandomAccessFile
            // Get rid of line buffer (is this a good choice?)
            buf = null;
        }