ComponentOne PDF for .NET
CSJ2K.j2k.codestream.writer Namespace / FileCodestreamWriter Class / FileCodestreamWriter Constructor / FileCodestreamWriter Constructor(String,Int32)
The name of file where to write the bit stream
The maximum number of bytes that can be written to the bit stream.

In This Topic
    FileCodestreamWriter Constructor(String,Int32)
    In This Topic
    Opens the file named 'fname' 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). A BufferedOutputStream is used on top of the file to increase throughput, the length of the buffer is DEF_BUF_LEN.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal fname As String, _
       ByVal mb As Integer _
    )
    public FileCodestreamWriter( 
       string fname,
       int mb
    )

    Parameters

    fname
    The name of file where to write the bit stream
    mb
    The maximum number of bytes that can be written to the bit stream.
    Exceptions
    ExceptionDescription
    If an error occurs while trying to open the file for writing or while writing the magic number.
    See Also