Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Microsoft C 6.0 - <b>_getarcinfo() get font characteristics</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _getarcinfo()           Get font characteristics

 #include   <graph.h>

 short _getfontinfo(fontbuffer);
 struct _fontinfo _far *fontbuffer;     _fontinfo variable

    _getfontinfo() returns information about the current font in a
    _fontinfo structure:

                struct _fontinfo
                {
                int  type;
                int  ascent;
                int  pixwidth;
                int  pixheight;
                int  avgwidth;
                char filename[81];
                char facename[32];
                };

    Returns:         Nonzero value for success; -1 otherwise.

    Portability:     MS-DOS only, true MDPA, CGA, EGA, MCGA, or VGA video
                     compatibles

   -------------------------------- Example ---------------------------------

        This program prints out a text string in a font from a .FON file.

    #include <conio.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <graph.h>

    unsigned char *tstring = "Here is the Text";

    void main()
    {
        struct videoconfig vstruc;
        struct _fontinfo finfo;
        short nfont, maxfonts, halfinx, halfiny;

        _setvideomode(_MAXRESMODE);
        _getvideoconfig(&vstruc);
        _registerfonts("*.FON");
        _clearscreen(_GCLEARSCREEN);

        halfinx = vstruc.numxpixels/2 - _getgtextextent(tstring)/2;
        halfiny = vstruc.numypixels/2 + _getgtextextent(tstring)/2;
        _moveto(halfinx, halfiny);

        _setfont("n1");     /* Display first font */
        _setgtextvector(1, 0);
        _outgtext(tstring);
        _setgtextvector(-1, 0);
        _outgtext(tstring);
        _getfontinfo(&finfo);
        getch();

        _unregisterfonts();
        _setvideomode(_DEFAULTMODE);
    }

See Also: _registerfonts() _setfont() _setgtextvector() _unregisterfonts()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson