功能:
在指定位置输出字符串。
声明:
void outtextxy(
int x,
int y,
const char* text,
PIMAGE pimg = NULL
);
void outtextxy(
int x,
int y,
CHAR c,
PIMAGE pimg = NULL
);
void outtextxy(
int x,
int y,
const wchar_t* text,
PIMAGE pimg = NULL
);
void outtextxy(
int x,
int y,
wchar_t c,
PIMAGE pimg = NULL
);
参数:
x
字符串输出时头字母的 x 轴的坐标值
y
字符串输出时头字母的 y 轴的坐标值。
text
要输出的字符串。
c
要输出的字符。
返回值:
(无)
示例:
// 输出字符串
char s[] = "Hello World";
outtextxy(10, 20, s);
// 输出字符
char c = 'A';
outtextxy(10, 40, c);
// 输出数值,先将数字格式化输出为字符串
char s[5];
sprintf(s, "%d", 1024);
outtextxy(10, 60, s);