1

我有以下代码:

cout<<"Please enter the name of your BMP image file: "<<endl;
cin>>fname;
nP = fname.c_str(); 
CImage input = CImage();
input.Load(nP);

// allocate space for host source image
unsigned char *pHI, *pCI;
width = input.GetWidth();
height = input.GetHeight();
pCI = (unsigned char *)input.GetBits();
pHI = (unsigned char *)malloc(sizeof(unsigned char) * width * height);

// fill array with CImage array content
srand (time(NULL));
for (int cnt = 0; cnt < sizeof(unsigned char) * width * height; cnt++){
    pHI[cnt] = pCI[cnt];
}

但是当我尝试获取宽度和高度时,程序给了我一个错误。

“调试断言失败!...表达式:m_hBitmap != 0”

如果您对可能导致此问题的原因/我应该更改的内容有任何想法,我将不胜感激!

:)

4

1 回答 1

1

首先要检查的是input.Load()是否成功。它返回一个HRESULT,你应该检查它的值。这将是一个关于正在发生的事情的线索。

链接到 CImage::Load()

您可以在这里解释 HRESULT 的含义:

HRESULT 的详细信息

祝你好运,但需要更多信息。

编辑后:此外,您只能将 CImage::Load() 用于 DIB 部分。有关更多信息,请参阅此链接: CImage 类参考

于 2011-04-21T23:40:36.970 回答