This package provides the functionality to utilize the features of Syncfusion® .NET Maui ImageEditor control and more.
$ dotnet add package Syncfusion.Maui.ImageEditorThe Syncfusion.Maui.ImageEditor package contains the Syncfusion ImageEditor component for .NET MAUI application. The Syncfusion .NET MAUI ImageEditor component is used to edit an image by annotating with free hand drawing paths, text, and built-in shapes.
By using the following IDEs, you can develop .NET MAUI applications
The below tool is required to run the .NET MAUI application.
To initialize the ImageEditor control add the below code to your xaml file.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ImageEditorMauiSample.GettingStarted"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:imageeditor="http://schemas.syncfusion.com/maui"
BackgroundColor="White">
<ContentPage.Content>
<imageeditor:SfImageEditor />
</ContentPage.Content>
</ContentPage>