CSJ2K.j2k.codestream.writer.FileCodestreamWriter.FileCodestreamWriter C# (CSharp) Method

FileCodestreamWriter() public method

Uses the output stream 'os' for writing the bit stream, using the 'he' header encoder. The magic number is written to the bit stream. Normally, the header encoder must be empty (i.e. no data has been written to it yet). No BufferedOutputStream is used on top of the output stream 'os'.
If an error occurs while writing the magic /// number to the 'os' output stream. /// ///
public FileCodestreamWriter ( System os, int mb ) : System
os System The output stream where to write the bit stream. /// ///
mb int The maximum number of bytes that can be written to the bit /// stream. /// ///
return System
        public FileCodestreamWriter(System.IO.Stream os, int mb)
            : base(mb)
        {
            out_Renamed = os;
            initSOP_EPHArrays();
        }