@@ -184,7 +184,7 @@ public ImageFactory Load(string imagePath)
184184 }
185185
186186 /// <summary>
187- /// Resets the ImageFactory to its original loaded state.
187+ /// Resets the current image to its original loaded state.
188188 /// </summary>
189189 /// <returns>
190190 /// The current instance of the <see cref="T:ImageProcessor.ImageFactory"/> class.
@@ -213,7 +213,6 @@ public ImageFactory Reset()
213213 return this ;
214214 }
215215
216-
217216 #region Manipulation
218217 /// <summary>
219218 /// Adds a query-string to the image factory to allow auto-processing of remote files.
@@ -317,7 +316,7 @@ public ImageFactory Contrast(int percentage)
317316 }
318317
319318 /// <summary>
320- /// Crops an image to the given coordinates .
319+ /// Crops the current image to the given location and size .
321320 /// </summary>
322321 /// <param name="rectangle">
323322 /// The <see cref="T:System.Drawing.Rectangle"/> containing the coordinates to crop the image to.
@@ -338,7 +337,7 @@ public ImageFactory Crop(Rectangle rectangle)
338337 }
339338
340339 /// <summary>
341- /// Applies a filter to an image.
340+ /// Applies a filter to the current image.
342341 /// </summary>
343342 /// <param name="filterName">
344343 /// The name of the filter to add to the image.
@@ -359,7 +358,7 @@ public ImageFactory Filter(string filterName)
359358 }
360359
361360 /// <summary>
362- /// Flips an image either horizontally or vertically.
361+ /// Flips the current image either horizontally or vertically.
363362 /// </summary>
364363 /// <param name="flipVertically">
365364 /// Whether to flip the image vertically.
@@ -384,7 +383,7 @@ public ImageFactory Flip(bool flipVertically)
384383 }
385384
386385 /// <summary>
387- /// Sets the output format of the image to the matching <see cref="T:System.Drawing.Imaging.ImageFormat"/>.
386+ /// Sets the output format of the current image to the matching <see cref="T:System.Drawing.Imaging.ImageFormat"/>.
388387 /// </summary>
389388 /// <param name="imageFormat">The <see cref="T:System.Drawing.Imaging.ImageFormat"/>. to set the image to.</param>
390389 /// <returns>
@@ -401,7 +400,10 @@ public ImageFactory Format(ImageFormat imageFormat)
401400 }
402401
403402 /// <summary>
404- /// Applies a filter to an image.
403+ /// Alters the output quality of the current image.
404+ /// <remarks>
405+ /// This method will only effect the output quality of jpeg images
406+ /// </remarks>
405407 /// </summary>
406408 /// <param name="percentage">A value between 1 and 100 to set the quality to.</param>
407409 /// <returns>
@@ -418,7 +420,7 @@ public ImageFactory Quality(int percentage)
418420 }
419421
420422 /// <summary>
421- /// Resizes an image to the given dimensions.
423+ /// Resizes the current image to the given dimensions.
422424 /// </summary>
423425 /// <param name="size">
424426 /// The <see cref="T:System.Drawing.Size"/> containing the width and height to set the image to.
@@ -517,7 +519,7 @@ public ImageFactory Vignette()
517519 }
518520
519521 /// <summary>
520- /// Adds a text based watermark to the image
522+ /// Adds a text based watermark to the current image.
521523 /// </summary>
522524 /// <param name="textLayer">
523525 /// The <see cref="T:ImageProcessor.Imaging.TextLayer"/> containing the properties necessary to add
0 commit comments