zoukankan      html  css  js  c++  java
  • C++:GDI+ 半透明的阴影效果

    利用 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出来的副本。
    }

  • 相关阅读:
    Go -- 调用C/C++
    fatal error: sys/cdefs.h: No such file or directory
    ubuntu下安装go语言;sublime+gocode搭建;go的卸载和环境变量配个人.bashrc
    sqlite多表关联update
    sqlite insert select 联合使用
    sqlite3 支持的关联查询
    iOS -- 拨打电话
    lapis 项目添加prometheus 监控
    lapis 1.7.0 更好的openresty 版本兼容以及安全数据库支持
    skipper backend 负载均衡配置
  • 原文地址:https://www.cnblogs.com/kevinzhwl/p/3878937.html
Copyright © 2011-2022 走看看