天天看点

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)、在应用类的InitInstance函数中添加GDI+的初始化代码: BOOL

int CCGDIPlusApp::ExitInstance()

{

    Gdiplus::GdiplusShutdown(m_gdiplusToken);

    return CWinApp::ExitInstance();

}

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

int CGDIPlusApp::ExitInstance()

     Gdiplus::GdiplusShutdown(m_gdiplusToken);

      return CWinApp::ExitInstance();

}        

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

复制代码

void CCGDIPlusView::OnDraw(CDC* pDC)

    CCGDIPlusDoc* pDoc = GetDocument();

    ASSERT_VALID(pDoc);

    if (!pDoc)

        return;

    using namespace Gdiplus;

    Graphics graphics( pDC->m_hDC );

    GraphicsPath path; // 构造一个路径

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

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

    PathGradientBrush pthGrBrush(&path);

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

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

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

    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);

本文转自Phinecos(洞庭散人)博客园博客,原文链接:http://www.cnblogs.com/phinecos/archive/2009/03/01/1400685.html,如需转载请自行联系原作者

继续阅读