コード例 #1
0
 /// <summary>
 /// Resizes and image by height
 /// </summary>
 /// <param name="image">The image.</param>
 /// <param name="height">The height.</param>
 /// <param name="backgroundFillColor">Color of the background fill.</param>
 /// <returns>Image.</returns>
 public static Image ResizeByHeight(this Image image, int height, Color backgroundFillColor)
 {
     ImageManipulation imageManipulation = new ImageManipulation();
     return imageManipulation.ResizeByHeight(image, height, backgroundFillColor);
 }