//求颜色表的长度,彩色图像颜色表长度为0,非彩色图像(灰度图像)
// 颜色表长度为pow(2,biBitCount)
int colorTableLng;
if(biBitCount!=24)
colorTableLng=pow(2,biBitCount);
else
colorTableLng=0;
1> chap1_4View.cpp
1>d:\prefences\code\test\源代码\chap1_4\chap1_4view.cpp(184): error C2668: “pow”: 对重载函数的调用不明确
1> d:\program files\microsoft visual studio 10.0\vc\include\math.h(583): 可能是“long double pow(long double,int)”
1> d:\program files\microsoft visual studio 10.0\vc\include\math.h(535): 或 “float pow(float,int)”
1> d:\program files\microsoft visual studio 10.0\vc\include\math.h(497): 或 “double pow(double,int)”
1> 尝试匹配参数列表“(int, int)”时
1> chap1_4Doc.cpp
修改方法::不用POW
int colorTableLng;if(biBitCount!=24)
//colorTableLng=pow(2,biBitCount);
{
switch(biBitCount)
{case 1:colorTableLng=2;break;
case 4:colorTableLng=16;break;
case 8:colorTableLng=256;
}
}
else
colorTableLng=0;