// Resize
 public static Image Crop(this Image source, Rectangle bounds)
 => PerformAction(source, image => ImageBaseOperations.Crop(image, bounds));
Exemple #2
0
 // Resize
 public static Image Crop(this Image source, Rectangle bounds) => PerformAction(source, false, (sourceImage, targetImage) => ImageBaseOperations.Crop(sourceImage, targetImage, bounds));