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 As System.IO.Stream _
) As CMapTable
public static CMapTable LoadCompressed(
System.IO.Stream
)
Parameters
- stream
- The stream containing the CMap definition.
Return Value
The created
CMapTable object.
See Also