Browse Source

Fix default webp file format

pull/2751/head
James Jackson-South 2 years ago
parent
commit
baaf29cec5
  1. 2
      src/ImageSharp/Formats/Webp/WebpMetadata.cs

2
src/ImageSharp/Formats/Webp/WebpMetadata.cs

@ -43,7 +43,7 @@ public class WebpMetadata : IFormatMetadata<WebpMetadata>
/// <summary>
/// Gets or sets the webp file format used. Either lossless or lossy.
/// </summary>
public WebpFileFormatType FileFormat { get; set; } = WebpFileFormatType.Lossless;
public WebpFileFormatType FileFormat { get; set; } = WebpFileFormatType.Lossy;
/// <summary>
/// Gets or sets the loop count. The number of times to loop the animation. 0 means infinitely.

Loading…
Cancel
Save