using FreeTypeSharp;
using FreeTypeSharp.Native;
// 初始化 FreeType 库
FT.Library library = new FT.Library();
FT.Init_FreeType(ref library);
// 加载字体文件
FT.Face face = new FT.Face();
FT.New_Face(library, "arial.ttf", 0, ref face);
// 设置字体大小
FT.Set_Char_Size(face, 0, 24 * 64, 72, 72);
// 渲染字符 'A'
FT.Load_Char(face, 'A', FT.LoadFlag.Render);
FT.Bitmap bitmap = face.Glyph.Bitmap;
// 将位图保存为 PNG
using (var ms = new MemoryStream())
{
bitmap.Save(ms, ImageFormat.Png);
File.WriteAllBytes("A.png", ms.ToArray());
}