/// <summary>
 /// Crops the specified image to new size from the specified top left points.
 /// </summary>
 /// <param name="image">The image.</param>
 /// <param name="topLeft">The top left.</param>
 /// <param name="newSize">The new size.</param>
 /// <returns>Image.</returns>
 public static Image Crop(this Image image, Point topLeft, Size newSize)
 {
     ImageManipulation imageManipulation = new ImageManipulation();
     return imageManipulation.Crop(image, topLeft, newSize);
 }