diff --git a/docs/user-interface/images/images.md b/docs/user-interface/images/images.md
index 81a0a083a..cf65c8e10 100644
--- a/docs/user-interface/images/images.md
+++ b/docs/user-interface/images/images.md
@@ -82,6 +82,17 @@ 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
+
+
+```
+
## Display an image
Images can be displayed with the control. For more information, see [Image](../controls/image.md).