分类: C/C++
2017-04-26 17:17:11
在VS2008当中由于自带了GDI+的开发包,所以不需要在安装GDI开发包,这些头文件的位置由VS中的$(WindowsSdkDir)/include自动包含进来了。你可以在vs的命令提示符下使用 echo %WindowsSdkDir%显示该路径。我的电脑上是在C:/Program Files/Microsoft SDKs/Windows/v6.0A/Include。默认vs并没有将gdi的静态库链接文件加进来,所以需要显示链接,编译器指令为#pragma comment(lib, "gdiplus.lib")
使用gdi+的步骤:
1.新建一个mfc对话框工程
2.在stdafx.h文件中加入以下几行语句:
3.修改App类
在App类(以下例子中为CTestApp)中增加成员
protected:
GdiplusStartupInput m_gdiplusStartupInput;
ULONG_PTR m_gdiplusToken;
在BOOL CTestApp::InitInstance()增加以下代码, 必须在dlg.DoModal()前.
GdiplusStartup(&m_gdiplusToken, &m_gdiplusStartupInput, NULL);
重载CTestApp::ExitInstance()
public:
virtual BOOL ExitInstance();
BOOL CTestApp::ExitInstance()
{
GdiplusShutdown(m_gdiplusToken);
return CWinAppEx::ExitInstance(); //使用基类的ExitInstance().
}
4. 现在可以在CTestDlg::OnPaint()中增加以下代码来画图了
CClientDC dc(this);
Graphics graphics(dc);
Image image(L"d:/test.jpg");
Point pos[] =
{
Point(10, 10),
Point(image.GetWidth() + 10, 10),
Point(10, image.GetHeight() + 10)
};
graphics.DrawImage(&image, pos, 3); //在平行四边形区域内显示图像