BitmapEx.h的一个问题

时间:2010-06-23 17:24:09

标签: c++

我写这段代码但是它给出了一个错误。为什么它不包含头文件?

编码:

#include "BitmapEx.h"
CBitmapEx bitmapEx;
bitmapEx.Load(_T("Enter bitmap source file path here..."));
bitmapEx.Rotate(45);
bitmapEx.Sepia();
bitmapEx.Scale(50, 50);
bitmapEx.Draw(hDC);
bitmapEx.Save(_T("Enter bitmap destination file path here..."));

错误: 无法打开包含文件:'BitmapEx.h':没有这样的文件或目录

1 个答案:

答案 0 :(得分:1)

显然,就像错误消息告诉您的那样,它无法找到该文件。你拼错了名字吗?它是在当前目录中,还是在当前包含路径中?