/// <summary>
 /// Draws the text onto the image filled via the brush.
 /// </summary>
 /// <param name="source">The image this method extends.</param>
 /// <param name="text">The text.</param>
 /// <param name="font">The font.</param>
 /// <param name="brush">The brush.</param>
 /// <param name="location">The location.</param>
 /// <returns>
 /// The <see cref="Image{TPixel}" />.
 /// </returns>
 public static IImageProcessingContext DrawText(
     this IImageProcessingContext source,
     string text,
     Font font,
     IBrush brush,
     PointF location) =>
 source.DrawText(source.GetTextGraphicsOptions(), text, font, brush, location);