Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Text.CMap Namespace / CMapTable Class / LoadCompressed Method
The stream containing the CMap definition.

In This Topic
    LoadCompressed Method
    In This Topic
    Loads a CMapTable from a specified stream, the content of the stream will be decompressed using System.IO.Compression.DeflateStream.

    See the PDF spec for the description of the CMap format.

    This method will throw an exception if the stream content has unknown or unsupported format.

    Syntax
    'Declaration
     
    Public Shared Function LoadCompressed( _
       ByVal stream As System.IO.Stream _
    ) As CMapTable
    public static CMapTable LoadCompressed( 
       System.IO.Stream stream
    )

    Parameters

    stream
    The stream containing the CMap definition.

    Return Value

    The created CMapTable object.
    See Also