outlinefont = OpenOutlineFont(fileName, list, flags)
D0 A0 A1 D0
struct OutlineFont *OpenOutlineFont(STRPTR fileName,
struct List *list, ULONG flags);
This function finds the .otag file for the specified outline font on disk, loads it into memory, validates that OT_FileIdent exists and matches the file size, validates that OT_Engine exists and relocates all OT_Indirect tags. If requested, it opens the font engine library and a glyph engine and calls ESetInfo() with the appropriate OT_OTagPath and OT_OTagList tags. It returns a pointer to a struct OutlineFont. It is important to match this call with a corresponding
CloseOutlineFont() call for effective management of memory.
D0 is zero if the desired .otag file cannot be found, loaded or validated, the font engine library or glyph engine could not be opened or the ESetInfo() call specifying OT_OTagPath and OT_OTagList failed. Otherwise D0 points to a struct OutlineFont.
If you did not set OFF_OPEN and want to open the font later: open the font engine library via OpenLibrary() and store it in olf_EEngine.ege_BulletBase, if successful call
EOpenEngine() with the address of olf_EEngine, if successful call ESetInfo() with olf_OTagPath and olf_OTagList as OT_OTagPath / OT_OTagList, if successful you can use the font. But: you must clean up yourself when done (
ECloseEngine(), CloseLibrary()) and you _must_ set all olf_EEngine members back to NULL before calling
CloseOutlineFont(). Or just use your own EGlyphEngine structure instead.
struct OutlineFont *outlineFont;
if (outlineFont = OpenOutlineFont("Helvetica", NULL, OFF_OPEN))
{
if (ESetInfo(&outlineFont->olf_EEngine,
OT_DeviceDPI, (XDPI << 16) | YDPI,
OT_PointHeight, PointHeight,
TAG_END) == OTERR_Success)
{
// Now all is set up to use the font with
// ESetInfo(), EObtainInfo() and EReleaseInfo()
}
CloseOutlineFont(outlineFont, NULL);
}
CloseOutlineFont(), bullet.library/--background--,
ESetInfoA(),
EObtainInfoA(),
EReleaseInfoA(), diskfont/diskfont.h, diskfont/diskfonttag.h, diskfont/oterrors.h