Browse Source

Whoops! no default value

pull/362/head
JimBobSquarePants 9 years ago
parent
commit
3a8f4fd394
  1. 2
      src/ImageSharp/Formats/Jpeg/JpegEncoder.cs

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

@ -21,7 +21,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg
/// Gets or sets the quality, that will be used to encode the image. Quality /// Gets or sets the quality, that will be used to encode the image. Quality
/// index must be between 0 and 100 (compression from max to min). /// index must be between 0 and 100 (compression from max to min).
/// </summary> /// </summary>
public int Quality { get; set; } public int Quality { get; set; } = 75;
/// <summary> /// <summary>
/// Gets or sets the subsample ration, that will be used to encode the image. /// Gets or sets the subsample ration, that will be used to encode the image.

Loading…
Cancel
Save