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