Browse Source

Fixed 75 default quality from the encoder

pull/1706/head
Dmitry Pentin 5 years ago
parent
commit
2fd703d403
  1. 2
      src/ImageSharp/Formats/Jpeg/JpegEncoder.cs

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

@ -18,7 +18,7 @@ namespace SixLabors.ImageSharp.Formats.Jpeg
/// index must be between 0 and 100 (compression from max to min). /// index must be between 0 and 100 (compression from max to min).
/// Defaults to <value>75</value>. /// Defaults to <value>75</value>.
/// </summary> /// </summary>
public int? Quality { get; set; } = 75; public int? Quality { get; set; }
/// <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