码迷,mamicode.com
首页 > 其他好文 > 详细

绘制椭圆

时间:2019-08-05 19:05:35      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:hwnd   return   wm_paint   bsp   case   代码   ase   坐标   bottom   

Ellipse() 函数可以用来绘制椭圆,它的原型为:

BOOL Ellipse、(http://www.amjmh.com/v/)

HDC hdc, //设备环境句柄
int nLeftRect, //左上角x坐标
int nTopRect, //左上角y坐标
int nRightRect, //右下角x坐标
int nBottomRect //右下角y坐标
);
1
2
3
4
5
6
7
注意:当 nRightRect - nLeftRect = nBottomRect - nRightRect 时绘制出的是一个圆。

示例代码:

case WM_PAINT:
hdc = BeginPaint(hwnd, &ps);
Ellipse(hdc, 20, 20, 180,90);
EndPaint(hwnd, &ps);
return 0 ;
--------------------- 

绘制椭圆

标签:hwnd   return   wm_paint   bsp   case   代码   ase   坐标   bottom   

原文地址:https://www.cnblogs.com/ly570/p/11304710.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!