@ -32,7 +32,7 @@ namespace SixLabors.ImageSharp.Formats.Webp
/// <summary>
/// Gets a value indicating whether the alpha plane should be compressed with WebP lossless format.
/// </summary>
bool AlphaCompression { get; }
bool UseAlphaCompression { get; }
/// Gets the number of entropy-analysis passes (in [1..10]).
@ -24,7 +24,7 @@ namespace SixLabors.ImageSharp.Formats.Webp
public int Method { get; set; } = 4;
/// <inheritdoc/>
public bool AlphaCompression { get; set; }
public bool UseAlphaCompression { get; set; }
public int EntropyPasses { get; set; }
@ -86,7 +86,7 @@ namespace SixLabors.ImageSharp.Formats.Webp
public WebpEncoderCore(IWebPEncoderOptions options, MemoryAllocator memoryAllocator)
{
this.memoryAllocator = memoryAllocator;
this.alphaCompression = options.AlphaCompression;
this.alphaCompression = options.UseAlphaCompression;
this.lossy = options.Lossy;
this.quality = options.Quality;
this.method = options.Method;