예제 #1
0
 /// <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;
 }
예제 #2
0
 /// <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);
 }