主页 / 库函数目录 / 文字输出 / outtextrect
功能:
在指定矩形范围内输出字符串。
声明:
void outtextrect(
int x,
int y,
int w,
int h,
const char* text,
PIMAGE pimg = NULL
);
void outtextrect(
int x,
int y,
int w,
int h,
const wchar_t* text,
PIMAGE pimg = NULL
);
参数:
x, y, w, h
要输出字符串所在的矩形区域
text
要输出的字符串。
返回值:
(无)