您的位置:首页 > 其它

GDI+实现半透明阴影

2015-09-14 16:44 225 查看
利用 GDI+可以很容易的描画出逼真的半透明效果的阴影。

一、有边框和底部边框实现半透明阴影(转载)。

void DrawShadow(Graphics &g, GraphicsPath ButtonPath)

{

g.SetPageUnit(UnitPixel); //设置Graphics的坐标单位为像素

GraphicsPath &ShadowPath = *(ButtonPath.Clone()); //拷贝一个按钮区域路径的副本,用来生成阴影区域路径

// 获得阴影区域

Matrix ShadowMatrix;

ShadowMatrix.Translate( ShadowSize, ShadowSize );// 平移,ShadowSize即阴影延伸出来的像素数,这里是向右下方移动的,可以根据实际情况修改。

ShadowPath.Transform(&ShadowMatrix); // 应用矩阵

Region ButtonRegion(&ButtonPath); //利用按钮的路径建立按钮区域

Region ShadowRegion(&ShadowPath); //利用阴影路径建立阴影的区域



ShadowRegion.Exclude(&ButtonRegion); // 区域求差,这样就得出了纯粹的阴影区域,排除了阴影区域和按钮区域重合的部分。



// 初始化渐变画刷

PathGradientBrush brush(&ShadowPath);

brush.SetCenterColor(ShadowColor); // 这里利用的是路径渐变画刷

Color colors[] = ...{Color(0, 0, 0, 0)};

int count = 1;

brush.SetSurroundColors(colors, &count);

brush.SetFocusScales(0.75f, 0.75f); //对渐变效果进行调整,使其更加自然。这句的实际作用是对渐变效果进行缩放。参数是横纵两个坐标轴的缩放比例。

g.FillRegion(&brush, &ShadowRegion);

delete &ShadowPath; //别忘了删除Clone出来的副本。

}

二、对话框四边半透明阴影

void DrawShadow(Graphics &g, GraphicsPath ButtonPath)

{

g.SetPageUnit(UnitPixel); //设置Graphics的坐标单位为像素

GraphicsPath &ShadowPath = *(ButtonPath.Clone()); //拷贝一个按钮区域路径的副本,用来生成阴影区域路径

Region ButtonRegion(&ButtonPath); //利用按钮的路径建立按钮区域

RectF rect2{ 50, 50, 110, 110 }, rect3{55,55,100,100};

path.AddRectangle(rect2);

path2.AddRectangle(rect3);

Region ButtonRegion(&path); //利用按钮的路径建立按钮区域

Region region(&path2);

ButtonRegion.Exclude(®ion);//计算抠除矩形中间部分



// 初始化渐变画刷

PathGradientBrush brush(&ShadowPath);

brush.SetCenterColor(ShadowColor); // 这里利用的是路径渐变画刷

Color colors[] = ...{Color(0, 0, 0, 0)};

int count = 1;

brush.SetSurroundColors(colors, &count);

brush.SetFocusScales(0.75f, 0.75f); //对渐变效果进行调整,使其更加自然。这句的实际作用是对渐变效果进行缩放。参数是横纵两个坐标轴的缩放比例。

g.FillRegion(&brush, &ShadowRegion);

delete &ShadowPath; //别忘了删除Clone出来的副本。

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: