コード例 #1
0
ファイル: Brushes.cs プロジェクト: jimmymain/ImageSharp
 /// <summary>
 /// Create as brush that will paint a Percent20 Hatch Pattern with
 /// in the specified foreground and background colors
 /// </summary>
 /// <param name="foreColor">Color of the foreground.</param>
 /// <param name="backColor">Color of the background.</param>
 /// <returns>A Brush</returns>
 public static PatternBrush Percent20(Rgba32 foreColor, Rgba32 backColor)
 => new PatternBrush(Brushes <Rgba32> .Percent20(foreColor, backColor));
コード例 #2
0
ファイル: Brushes.cs プロジェクト: jimmymain/ImageSharp
 /// <summary>
 /// Create as brush that will paint a Percent20 Hatch Pattern with
 /// in the specified foreground color and a transparent background
 /// </summary>
 /// <param name="foreColor">Color of the foreground.</param>
 /// <returns>A Brush</returns>
 public static PatternBrush Percent20(Rgba32 foreColor)
 => new PatternBrush(Brushes <Rgba32> .Percent20(foreColor, Rgba32.Transparent));