diff --git a/docs/user-interface/images/images.md b/docs/user-interface/images/images.md index 333895010..0b9f6917d 100644 --- a/docs/user-interface/images/images.md +++ b/docs/user-interface/images/images.md @@ -81,3 +81,14 @@ A background color for an image can also be specified: Color values can be specified in hexadecimal, or as a .NET MAUI color. For example, `Color="Red"` is valid. + +## Control image quality by specifying FilterQuality + +The underlying [SKFilterQuality](https://github.com/mono/SkiaSharp/blob/f9bf4512767c9de22b6683e573b145ce5f0ce0a9/binding/SkiaSharp/SKPaint.cs#L17) used to compress the images is set to `SKFilterQuality.High` by default. + +With https://github.com/dotnet/maui/pull/25686 a new configuration property `FilterQuality` was introduced that can be set to any member of `SKFilterQuality`: + +```xml + + +```