GDI 使用步骤

使用GDI+一般遵循下列步骤:   

(1)、在应用程序中添加GDI+的包含文件gdiplus.h以及附加的类库gdiplus.lib。通常gdiplus.h包含文件添加在应用程序的stdafx.h文件中,而gdiplus.lib可用两种进行添加:第一种是直接在stdafx.h文件中添加下列语句:

#pragma comment( lib, "gdiplus.lib" )

  另一种方法是:选择"项目->属性"菜单命令,在弹出的对话框中选中左侧的"链接器->输入"选项,在右侧的"附加依赖项"框中键入gdiplus.lib,

(2)、在应用程序项目的应用类中,添加一个成员变量,如下列代码:

ULONG_PTR m_gdiplusToken;

其中,ULONG_PTR是一个DWORD数据类型,该成员变量用来保存GDI+被初始化后在应用程序中的GDI+标识,以便能在应用程序退出后,引用该标识来调用Gdiplus:: GdiplusShutdown来关闭GDI+。

(3)、在应用类中添加ExitInstance的重载,并添加下列代码用来关闭GDI+:

int CGDIPlusApp::ExitInstance()

{

 Gdiplus::GdiplusShutdown(m_gdiplusToken);

 return CWinApp::ExitInstance();

}            

(4)、在应用类的InitInstance函数中添加GDI+的初始化代码:

BOOL CGDIPlusApp::InitInstance()

{

 CWinApp::InitInstance();

 Gdiplus::GdiplusStartupInput gdiplusStartupInput;

 Gdiplus::GdiplusStartup(&m_gdiplusToken, &gdiplusStartupInput, NULL);

 ...

}            

(5)、在需要绘图的窗口或视图类中添加GDI+的绘制代码:

void CGDIPlusView::onDraw(CDC *pDC)

{

       Graphics graphics( pDC->m_hDC );

 

       GraphicsPath path; // 构造一个路径

       path.AddEllipse(50, 50, 200, 100);

 

       // 使用路径构造一个画刷

       PathGradientBrush pthGrBrush(&path);

 

       // 将路径中心颜色设为蓝色

       pthGrBrush.SetCenterColor(Color(255, 0, 0, 255));

 

       // 设置路径周围的颜色为蓝芭,但alpha值为0

       Color colors[] = {Color(0, 0, 0, 255)};

       INT count = 1;

       pthGrBrush.SetSurroundColors(colors, &count);

 

       graphics.FillRectangle(&pthGrBrush, 50, 50, 200, 100);

 

       LinearGradientBrush linGrBrush(

              Point(300, 50),

              Point(500, 150),

              Color(255, 255, 0, 0), // 红色

              Color(255, 0, 0, 255)); // 蓝色

 

       graphics.FillRectangle(&linGrBrush, 300, 50, 200, 100);

}            

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值