New to Telerik UI for .NET MAUI? Start a free 30-day trial
.NET MAUI ImageEditor Zooming
Updated on Jul 17, 2026
This article explains what are the zooming options you can apply to the image in the ImageEditor. The properties related to the zooming are:
ZoomLevel(double)—Specifies the current zoom level of the viewed image in percent. The default value is 100. A zoom level of 100 means the image is displayed with its original size.
In addition, you can restrict the zooming by applying min and max zoom:
MinZoomLevel(double)—Specifies the minimum allowed zoom level of the image in percent. The default value is 1. Setting theZoomLevelproperty is coerced betweenMinZoomLevelandMaxZoomLevel.MaxZoomLevel(double)—Specifies the maximum allowed zoom level of the image in percent. The default value is 1000. Setting theZoomLevelproperty is coerced betweenMinZoomLevelandMaxZoomLevel.
Example with Min and Max Zoom levels
RadImageEditor definition:
XAML
<telerik:RadImageEditor x:Name="imageEditor"
MinZoomLevel="0.5"
MaxZoomLevel="20"
Source="https://raw.githubusercontent.com/telerik/maui-samples/main/Samples/ControlsSamples/Resources/Images/borderconfigurationavatar.png" />
Add the namespace used:
XAML
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
For the ImageEditor Zoom Level example refer to the SDKBrowser Demo Application.