主页 / 库函数目录 / 文字输出 / ege_outtextxy

功能:

在指定位置输出字符串,支持 ARGB 颜色。

声明:
void ege_outtextxy(
    int x,
    int y,
    const char* text,
    PIMAGE pimg = NULL
);

void ege_outtextxy(
    int x,
    int y,
    CHAR c,
    PIMAGE pimg = NULL
);

void ege_outtextxy(
    int x,
    int y,
    const wchar_t* text,
    PIMAGE pimg = NULL
);

void ege_outtextxy(
    int x,
    int y,
    wchar_t c,
    PIMAGE pimg = NULL
);
参数: x 字符串输出时头字母的 x 轴的坐标值 y 字符串输出时头字母的 y 轴的坐标值。 text 要输出的文本内容。 c 要输出的字符。 返回值: (无) 示例:
// 输出字符串
char s[] = "Hello World";
ege_outtextxy(10, 20, s);
// 输出字符
char c = 'A';
ege_outtextxy(10, 40, c);
// 输出数值,先将数字格式化输出为字符串
char s[5];
sprintf(s, "%d", 1024);
ege_outtextxy(10, 60, s);