/// <summary>
 ///     Apply a color matrix to the image
 /// </summary>
 /// <param name="source">Image to apply matrix to</param>
 /// <param name="colorMatrix">ColorMatrix to apply</param>
 public static void ApplyColorMatrix(this Bitmap source, ColorMatrix colorMatrix)
 {
     source.ApplyColorMatrix(NativeRect.Empty, source, NativeRect.Empty, colorMatrix);
 }