Esempio n. 1
0
 /// <summary>
 /// Scale the image proportionally.
 /// </summary>
 /// <returns>Current factory instance itself.</returns>
 public ImageProcessFactory Scale(float widthScale, float heightScale)
 {
     this.image = ImageProcess.Scale(this.image, widthScale, heightScale);
     return(this);
 }