-
大小: 5KB文件类型: .c金币: 1下载: 0 次发布日期: 2021-01-11
- 语言: 其他
- 标签:
资源简介
C源代码:显示指定字符在指定字体中对应的由直线段和Bezier曲线段组成的笔划形状的命令行工具FontPath
代码片段和文件信息
#include
#include
char ch[3];
int i;
HFONT hfontohfont;
LRESULT CALLBACK WndProc(HWND hWnd UINT message WPARAM wParam LPARAM lParam) {
PAINTSTRUCT ps;
HDC hdc;
RECT r;
COLORREF oc;
int iNumPts;
LPPOINT lpPoints; // Path data points
LPBYTE lpTypes; // Path data types
HPEN hOldPen;
switch(message) {
case WM_CLOSE:
PostQuitMessage(0);
break;
case WM_KEYUP:
if (wParam==VK_ESCAPE||wParam==VK_SPACE) PostQuitMessage(0);
break;
case WM_PAINT:
BeginPaint(hWnd &ps);
hdc = ps.hdc; // the device context to draw in
GetClientRect(hWnd &r); // Obtain the window‘s client rectangle
ohfont=Selectobject(hdchfont);
- 上一篇:电脑鼠算法课件讲解概述
- 下一篇:微机原理与接口技术课程设计 交通灯
评论
共有 条评论