Parses font information from given stream.

Namespace: FirstFloor.Documents.Fonts
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public static FontInfo ParseFontInfo(
	Stream fontStream
)
Visual Basic
Public Shared Function ParseFontInfo ( _
	fontStream As Stream _
) As FontInfo
Visual C++
public:
static FontInfo^ ParseFontInfo(
	Stream^ fontStream
)

Parameters

fontStream
Type: System.IO..::..Stream
The font stream.

Return Value

The font information found in the stream.

Remarks

Obfuscated font streams are not accepted. Wrap obfuscated fonts using the DeobfuscatedFontStream before passing the stream to this method.

See Also