/// <summary> /// Initializes a new instance of the <see cref="Resizer"/> class. /// </summary> /// <param name="resizeLayer"> /// The <see cref="ResizeLayer"/>. /// </param> public Resizer(ResizeLayer resizeLayer) { ResizeLayer = resizeLayer; }
/// <summary> /// Initializes a new instance of the <see cref="Resizer"/> class. /// </summary> /// <param name="size"> /// The <see cref="Size"/> to resize the image to. /// </param> public Resizer(Size size) { ResizeLayer = new ResizeLayer(size); }