分享好友 天南地北首页 网站导航

什么是installuserfont

网友 2023-09-16 17:42 · 头闻号教育培训

最佳答案:

installuserfont,为函数名,可以安装未嵌入BGI系统的字体文件。

详情介绍

installuserfont,为函数名,可以安装未嵌入BGI系统的字体文件。

外文名
installuserfont
功 能
安装未嵌入BGI系统的字体文件
用 法
nt far installuserfont

installuserfont函数名

installuserfont

installuserfont简介

功 能: 安装未嵌入BGI系统的字体文件(CHR)

用 法: int far installuserfont(char far *name);

程序例:

#include <graphics.h>

#include <stdlib.h>

#include <stdio.h>

#include <conio.h>

void checkerrors(void);

int main(void)

{

int gdriver = DETECT, gmode;

int userfont;

int midx, midy;

initgraph(&gdriver, &gmode, "");

midx = getmaxx() / 2;

midy = getmaxy() / 2;

checkerrors();

userfont = installuserfont("USER.CHR");

checkerrors();

settextstyle(userfont, HORIZ_DIR, 4);

outtextxy(midx, midy, "Testing!");

getch();

closegraph();

return 0;

}

void checkerrors(void)

{

int errorcode;

errorcode = graphresult();

if (errorcode != grOk)

{

printf("Graphics error: %sn", grapherrormsg(errorcode));

printf("Press any key to halt:");

getch();

exit(1);

}

}

免责声明:本平台仅供信息发布交流之途,请谨慎判断信息真伪。如遇虚假诈骗信息,请立即举报

举报
反对 0
打赏 0
更多相关文章

收藏

点赞