dvdsubber-render.h
来自「DVD工具dvdsynth的源码」· C头文件 代码 · 共 27 行
H
27 行
struct FontInfo {
FontInfo* next;
wchar_t name[32];
int size;
bool bold, italic;
void* hfont;
int height;
int ascent;
int external_leading;
int width_of_space;
int GetTextWidth(wchar_t* text, int textlen);
~FontInfo();
};
FontInfo* LoadFont(const wchar_t* name, int size, bool bold, bool italic);
void RenderText(
const wchar_t* text,
FontInfo* font,
unsigned char textcolor,
unsigned char halocolor,
unsigned char* buf,
int width, int height,
int xstride, int ystride,
int left, int top);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?