本文介绍了有关BitmapEx.h的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

i 复制了此代码,但出现错误.为什么不包含头文件?

编码:

i copied this code but it gives an error. why it does not include the header file?

coding:

#include "BitmapEx.h"

// Load bitmap
CBitmapEx bitmapEx;
bitmapEx.Load(_T("Enter bitmap source file path here..."));

// Do whatever you need to do here

bitmapEx.Rotate(45);
bitmapEx.Sepia();
bitmapEx.Scale(50, 50);

// Draw the results on the screen (get hDC somewhere else)
bitmapEx.Draw(hDC);

// Save bitmap
bitmapEx.Save(_T("Enter bitmap destination file path here..."));



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



error:
Cannot open include file: ''BitmapEx.h'': No such file or directory

推荐答案


这篇关于有关BitmapEx.h的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 06:17