本文共 339 字,大约阅读时间需要 1 分钟。
void SetCxImageAlpha(CxImage & img, BYTE bAlpha) // bAlpha={0-100} { if (!img.AlphaIsValid()) { img.AlphaCreate(); float f=255; f/=100; f*=bAlpha; img.AlphaSet(f); } else{ for (int y=0;y<img.GetHeight();y++) { for (int x=0;x<img.GetWidth();x++) { BYTE a=img.AlphaGet(x,y); float f=a; f/=100; f*=bAlpha; a = f; img.AlphaSet(x,y,a); } } }} 转载地址:http://vbmxo.baihongyu.com/