Browse Source

Fixed text in comments.

af/merge-core
Dirk Lemstra 9 years ago
committed by Dirk Lemstra
parent
commit
347dcaa825
  1. 3
      src/ImageSharp.Formats.Jpeg/IJpegEncoderOptions.cs
  2. 2
      src/ImageSharp.Formats.Jpeg/JpegEncoderOptions.cs

3
src/ImageSharp.Formats.Jpeg/IJpegEncoderOptions.cs

@ -14,9 +14,6 @@ namespace ImageSharp.Formats
/// Gets the quality, that will be used to encode the image. Quality
/// index must be between 0 and 100 (compression from max to min).
/// </summary>
/// <remarks>
/// If the quality is less than or equal to 80, the subsampling ratio will switch to <see cref="JpegSubsample.Ratio420"/>
/// </remarks>
/// <value>The quality of the jpg image from 0 to 100.</value>
int Quality { get; }

2
src/ImageSharp.Formats.Jpeg/JpegEncoderOptions.cs

@ -31,7 +31,7 @@ namespace ImageSharp.Formats
/// index must be between 0 and 100 (compression from max to min).
/// </summary>
/// <remarks>
/// If the quality is less than or equal to 80, the subsampling ratio will switch to <see cref="JpegSubsample.Ratio420"/>
/// If the quality is less than or equal to 90, the subsampling ratio will switch to <see cref="JpegSubsample.Ratio420"/>
/// </remarks>
/// <value>The quality of the jpg image from 0 to 100.</value>
public int Quality { get; set; }

Loading…
Cancel
Save