forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_char_render.c
47 lines (42 loc) · 1.09 KB
/
test_char_render.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <LCUI_Build.h>
#include <LCUI/LCUI.h>
#include <LCUI/graph.h>
#include <LCUI/image.h>
#include <LCUI/font.h>
int main( void )
{
int ret, fid;
LCUI_Graph img;
LCUI_FontBitmap bmp;
LCUI_Pos pos = {25, 25};
/* 初始化字体处理功能 */
LCUI_InitFontLibrary();
/* 创建一个图像,并使用灰色填充 */
Graph_Init( &img );
Graph_Create( &img, 100, 100 );
Graph_FillRect( &img, RGB( 240, 240, 240 ), NULL, FALSE );
/* 载入字体文件 */
ret = LCUIFont_LoadFile( "C:/Windows/fonts/simsun.ttc" );
while( ret == 0 ) {
/* 获取字体ID */
fid = LCUIFont_GetId( "SimSun", 0, 0 );
if( fid < 0 ) {
break;
}
/* 渲染对应的文字位图,大小为 48 像素 */
ret = LCUIFont_RenderBitmap( &bmp, L'字', fid, 48 );
if( ret != 0 ) {
break;
}
/* 绘制红色文字到图像上 */
FontBitmap_Mix( &img, pos, &bmp, RGB( 255, 0, 0 ) );
LCUI_WritePNGFile( "test_char_render.png", &img );
/* 释放内存资源 */
FontBitmap_Free( &bmp );
Graph_Free( &img );
break;
}
/* 释放字体处理功能相关资源 */
LCUI_FreeFontLibrary();
return ret;
}