TTLoadEmbeddedFont function (t2embapi.h)
Reads an embedded font from the document stream and installs it. Also allows a client to further restrict embedding privileges of the font.
Syntax
LONG TTLoadEmbeddedFont(
[out] HANDLE *phFontReference,
[in] ULONG ulFlags,
[out] ULONG *pulPrivStatus,
[in] ULONG ulPrivs,
[out] ULONG *pulStatus,
[in] READEMBEDPROC lpfnReadFromStream,
[in] LPVOID lpvReadStream,
[in, optional] LPWSTR szWinFamilyName,
[in, optional] LPSTR szMacFamilyName,
[in, optional] TTLOADINFO *pTTLoadInfo
);
Parameters
[out] phFontReference
A pointer to a handle that identifies the installed embedded font. This handle references an internal structure, not an Hfont.
[in] ulFlags
A flag specifying loading and installation options. Currently, this flag can be set to zero or the following value:
Value | Meaning |
---|---|
|
Load the font so that it is not enumerated to the user. If the font is not installable, it will remain private. |
[out] pulPrivStatus
A pointer to flag indicating embedding privileges of the font. This flag is written upon completion of this function and can have one of the following values. This function returns the least restrictive license granted.
[in] ulPrivs
A flag indicating a further restriction of embedding privileges, imposed by the client loading the font. This flag must have one of the following values.
[out] pulStatus
A pointer to a bitfield containing status information about the TTLoadEmbeddedFont request. This field is filled upon completion of this function and can have zero or more of the following values.
[in] lpfnReadFromStream
A pointer to the client-defined callback function that reads the font structure from the document stream.
[in] lpvReadStream
A pointer to the stream (font structure).
[in, optional] szWinFamilyName
A pointer to the new 16-bit-character Unicode Microsoft Windows family name of the font. Set to NULL to use existing name. When changing the name of a font upon loading, you must supply both this parameter and the szMacFamilyName parameter.
[in, optional] szMacFamilyName
A pointer to the new 8-bit-character Macintosh family name of the font. Set to NULL to use existing name. When changing the name of a font upon loading, you must supply both this parameter and the szWinFamilyName parameter.
[in, optional] pTTLoadInfo
A pointer to a TTLOADINFO structure containing the URL from which the embedded font object has been obtained. If this value does not match one of those contained in the TTEMBEDINFO structure, the font will not load successfully.
Return value
If successful, returns E_NONE.
If font loading is successful, a font indicated by phFontReference is created from the font structure with the names referenced in szWinFamilyName and szMacFamilyName. pulPrivStatus is set indicating the embedding privileges of the font; and pulStatus may be set indicating status information about the font loading operation.
Otherwise, returns an error code described in Embedding Function Error Messages.
Remarks
To assist a client in determining whether an embedded font is already installed on the system, the font loading function will return an error message indicating a font with the same name exists on the system (E_FONTNAMEALREADYEXISTS), and if that font has the same checksum as the embedded font (E_FONTALREADYEXISTS). The client then has two options:
- Assume that the installed font is really the same as the embedded font and covers the same subsets.
- Force the embedded font to be installed with a different name to avoid incompatibilities with the font already on the system.
To use the existing name of the embedded font, the name string parameters need to be set to NULL.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | t2embapi.h |
Library | T2embed.lib |
DLL | T2embed.dll |