代码之家  ›  专栏  ›  技术社区  ›  Muzib hardyVeles

如何添加画布几何效果

  •  2
  • Muzib hardyVeles  · 技术社区  · 6 年前

    在我看来,Win2D中可用的所有效果都是用于绘制图像的。

    那怎么办 CanvasGeometry 画布几何 使用,比如说发光效果?

    谢谢。

    1 回复  |  直到 6 年前
        1
  •  1
  •   Nico Zhu    6 年前

    Geometry 对象提供了绘制和操纵几何图形的方法。是的 CreatePolygon CreatePath

    对于发光效果,你可以参考这个 code sample

    private void DoEffect(CanvasDrawingSession ds, Size size, float amount)
    {
        size.Width = size.Width - ExpandAmount;
        size.Height = size.Height - ExpandAmount;
    
        var offset = (float)(ExpandAmount / 2);           
    
        using (var textLayout = CreateTextLayout(ds, size))
        using (var textCommandList = new CanvasCommandList(ds))
        {
            using (var textDs = textCommandList.CreateDrawingSession())
            {                     
                textDs.DrawTextLayout(textLayout, 0, 0, GlowColor);
            }
    
             glowEffectGraph.Setup(textCommandList, amount);
             ds.DrawImage(glowEffectGraph.Output, offset, offset);
    
             ds.DrawTextLayout(textLayout, offset, offset, TextColor);
         }
    }