Introducing the New Blazor Image Editor Component
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (175).NET Core  (29).NET MAUI  (208)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (41)Black Friday Deal  (1)Blazor  (220)BoldSign  (15)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (67)Flutter  (133)JavaScript  (221)Microsoft  (119)PDF  (81)Python  (1)React  (101)Streamlit  (1)Succinctly series  (131)Syncfusion  (920)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (68)WPF  (159)Xamarin  (161)XlsIO  (37)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (151)Chart  (132)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (633)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (41)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (508)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (11)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (387)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (597)What's new  (333)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Introducing the New Blazor Image Editor Component

Introducing the New Blazor Image Editor Component

We are happy to introduce the new Blazor Image Editor component in the 2023 Volume 2 release. It has convenient, built-in tools for rotating, flipping, zooming, and cropping images with user-selected areas. You can insert annotations such as text, freehand drawings, and various shapes like rectangles, ellipses, lines, paths, and arrows over the images. This component also includes filters and finetuning options to enhance the images. It supports keyboard interactions and events and provides a user-friendly interface optimized for touch interactions.

Blazor Image Editor
Blazor Image Editor

Let’s explore the features of the new Blazor Image Editor component and its UI design.

Use cases

The Blazor Image Editor component is a versatile tool for image transformation and cropping, making it suitable for various applications. Here are some specific use case scenarios where this component excels:

  • Profile pictures: Crop images to create profile pictures. User-friendly APIs make it easy to customize the editor to fit specific use cases. Users can customize the toolbar or external buttons to enhance the editing experience and tailor it to their needs.
  • Photo editor: Comprehensive, built-in support for all essential editing features, conveniently accessible through a toolbar. This makes it a perfect fit for integrating into web or mobile apps that require robust image editing capabilities. Whether adjusting color, applying filters, or adding annotations, the Image Editor component provides a seamless solution for editing images within an app.

Key features

The key features of the Blazor Image Editor are as follows: 

Loading an image

The Blazor Image Editor offers multiple options for opening images for editing. You can open images by directly providing the encoded data (base64 image data).

Alternatively, you can open images using a URL by specifying it. The component also offers a user-friendly open button in the toolbar, allowing users to select and open image files from their local file system. The supported file types are PNG, JPEG, SVG, and base64.

Note: Place the image within the app’s wwwroot folder to load it in the Image Editor.

In the following code example, the OpenAsync method is used to load the hosted image.

@using Syncfusion.Blazor.ImageEditor
@using Syncfusion.Blazor.Buttons
 
<div style="padding-bottom: 15px">
    <SfButton OnClick="OpenAsync">Open Image</SfButton>
</div>
 
<SfImageEditor @ref="ImageEditor" Toolbar="customToolbarItem" Height="400">
</SfImageEditor>
 
@code {
    SfImageEditor ImageEditor;
    private List<ImageEditorToolbarItemModel> customToolbarItem = new List<ImageEditorToolbarItemModel>() { };

    private async void OpenAsync ()
    {
        await ImageEditor.OpenAsync("nature.png");
    }
}
Viewing an image using Blazor Image Editor
Viewing an image using Blazor Image Editor

Selection and cropping

The Blazor Image Editor offers a range of selection options to cater to different cropping needs. The selection region can be easily adjusted by dragging and resizing it according to the desired cropping area.

Selection

We can select an image using either the toolbar or the SelectAsync method. While using the SelectAsync method, we need to specify the selection type. The available selection types include custom, square, circle, and the aspect ratios 3:2, 4:3, 5:4, 7:5, and 16:9. This enables users to precisely define the shape and proportions of the selection region for cropping images.

Users can enable the selection functionality in the toolbar by clicking on the Crop and Transform button. This action reveals a dropdown menu and users can easily choose their desired option from the Crop Selection dropdown button.

Cropping

The Blazor Image Editor allows you to crop images based on the selected region. This can be accomplished through either the toolbar or the CropAsync method.

In the toolbar, users can perform cropping by clicking the enabled OK button, which becomes available only after selection. This ensures that a valid region for cropping is defined before applying the operation.

In the following code example, the SelectAsync and CropAsync methods are used to perform circle selection and cropping of an image.

@using Syncfusion.Blazor.ImageEditor
@using Syncfusion.Blazor.Buttons
 
<div style="padding-bottom: 15px">
    <SfButton OnClick="SelectAsync">Select</SfButton>
    <SfButton OnClick="CropAsync">Crop</SfButton>
</div>
 
<SfImageEditor @ref="ImageEditor" Toolbar="customToolbarItem" Height="400">
    <ImageEditorEvents Created="CreatedAsync"></ImageEditorEvents>
</SfImageEditor>
 
@code {
    SfImageEditor ImageEditor;
    private List<ImageEditorToolbarItemModel> customToolbarItem = new List<ImageEditorToolbarItemModel>() { };
 
    private async void CreatedAsync ()
    {
        await ImageEditor.OpenAsync("nature.png");
    }
 
    private async void SelectAsync ()
    {
        await ImageEditor.SelectAsync("Circle");
    }
 
    private async void CropAsync ()
    {
        await ImageEditor.CropAsync();
    }
}
Selecting a region in an image using Blazor Image Editor
Selecting a region in an image using Blazor Image Editor
Cropping an image using Blazor Image Editor
Cropping an image using Blazor Image Editor

Transforming an image

The toolbar in the Blazor Image Editor offers straightforward and user-friendly support for rotate and flip transformations. Users can access the transform options by clicking the Crop and Transform button and choosing Rotate Left, Rotate Right, Horizontal Flip, or Vertical Flip. This enables the easy rotation and flipping of images without the need for complex programming.

Additionally, developers can programmatically utilize the RotateAsync and FlipAsync methods to apply the rotation and flip transformations, respectively.

Refer to the following code example.

@using Syncfusion.Blazor.ImageEditor
@using Syncfusion.Blazor.Buttons
 <div style="padding-bottom: 15px">
    <SfButton OnClick="RotateAsync">Rotate</SfButton>
    <SfButton OnClick="FlipAsync">Flip</SfButton>
</div>
 
<SfImageEditor @ref="ImageEditor" Toolbar="customToolbarItem" Height="400">
    <ImageEditorEvents Created="CreatedAsync"></ImageEditorEvents>
</SfImageEditor>
 
@code {
    SfImageEditor ImageEditor;
    private List<ImageEditorToolbarItemModel> customToolbarItem = new List<ImageEditorToolbarItemModel>() { };
 
    private async void CreatedAsync()
    {
        await ImageEditor.OpenAsync("nature.png");
    }
 
    private async void RotateAsync()
    {
        await ImageEditor.RotateAsync(90);
    }
 
    private async void FlipAsync()
    {
        await ImageEditor.FlipAsync(ImageEditorDirection.Horizontal);
    }
}
Rotating an image using Blazor Image Editor
Rotating an image using Blazor Image Editor
Flipping image using Blazor Image Editor
Flipping image using Blazor Image Editor

Image annotations

Users can add annotations such as text, freehand drawings, and multiple shapes, including rectangles, ellipses, lines, arrows, and paths, over the images. These annotation features provide versatile ways to mark, highlight, or add graphical elements to images. Whether adding descriptive text, drawing freehand sketches, or incorporating geometric shapes, the Image Editor empowers users to annotate images with precision and creativity.

Text annotations

The Blazor Image Editor provides comprehensive support for text annotations. We can add text annotations to images using either the toolbar or the DrawTextAsync method.

With the DrawTextAsync method, users can specify the text content, font family, font size, and font styles to insert a text annotation programmatically.

Users can add text annotations using the toolbar by clicking the Annotation dropdown button and selecting the Add Text option from the pop-up menu. Once the text is added, a contextual toolbar (to customize the text) will automatically be enabled.

Shapes annotations

The Image Editor supports a variety of shape annotations, including rectangles, ellipses, lines, arrows, and paths. You can insert and customize them by adjusting their stroke color, fill color, and width. You can add shape annotations using the toolbar or specific methods such as DrawRectangleAsync, DrawEllipseAsync, DrawLineAsync, DrawArrowAsync, and DrawPathAsync.

In the toolbar, click the Annotation dropdown button and select an option from the pop-up menu. This enables users to activate the freehand mode to draw the shapes. Once enabled, a contextual toolbar becomes available, allowing users to customize the stroke color, fill color, and stroke width of the shape annotation.

After the shape annotation is completed, the Image Editor enables a quick access toolbar to clone or delete the shapes. The clone option duplicates the current shape and the delete option removes the shape annotation. This provides a convenient way to adjust or undo the annotation if it is unsatisfactory or no longer required.

In the following code example, the DrawTextAsync method is used to insert text, and the DrawRectangleAsync, DrawEllipseAsync, DrawLineAsync, DrawArrowAsync, and DrawPathAsync methods are used to insert shapes.

@using Syncfusion.Blazor.ImageEditor
@using Syncfusion.Blazor.Buttons

<div style="padding-bottom: 15px">
    <SfButton OnClick="TextAsync">Add Text</SfButton>
    <SfButton OnClick="RectangleAsync">Draw Rectangle</SfButton>
    <SfButton OnClick="EllipseAsync">Draw Ellipse</SfButton>
    <SfButton OnClick="ArrowAsync">Draw Arrow</SfButton>
    <SfButton OnClick="PathAsync">Draw Path</SfButton>
    <SfButton OnClick="LineAsync">Draw Line</SfButton>
</div>
 
<SfImageEditor @ref="ImageEditor" Toolbar="customToolbarItem" Height="400">
    <ImageEditorEvents Created="CreatedAsync"></ImageEditorEvents>
</SfImageEditor>
 
@code {
    SfImageEditor ImageEditor;
    private List<ImageEditorToolbarItemModel> customToolbarItem = new List<ImageEditorToolbarItemModel>() { };
    private ImageEditorPoint[] points = new ImageEditorPoint[] { new ImageEditorPoint { X = 400, Y = 200 }, new ImageEditorPoint { X = 500, Y = 300 }, new ImageEditorPoint { X = 350, Y = 400 } };
 
    private async void CreatedAsync()
    {
        await ImageEditor.OpenAsync("nature.png");
    }
 
    private async void TextAsync()
    {
        await ImageEditor.DrawTextAsync(450, 200, "Syncfusion", "Arial", 50, true, true, "#000");
    }
 
    private async void RectangleAsync()
    {
        await ImageEditor.DrawRectangleAsync(200, 50, 120, 120, 4, "#fff", "blue");
    }
 
    private async void EllipseAsync()
    {
        await ImageEditor.DrawEllipseAsync(400, 50, 70, 70, 4, "#fff", "green");
    }
 
    private async void ArrowAsync()
    {
        await ImageEditor.DrawArrowAsync(200, 200, 400, 200, 5, "red", ImageEditorArrowHeadType.Circle);
    }
 
    private async void PathAsync()
    {
        await ImageEditor.DrawPathAsync(points, 5, "yellow");
    }
    private async void LineAsync()
    {
        await ImageEditor.DrawLineAsync(200, 300, 400, 400, 5, "brown");
    }
}
Adding text and shape annotations using Blazor Image Editor
Adding text and shape annotations using Blazor Image Editor

Freehand drawing

You can also insert and customize freehand drawing annotations. You can adjust the stroke color and width to personalize the annotations. This can be achieved using either the toolbar or the EnableFreehandDrawAsync method.

In the toolbar, click the Annotation dropdown button and select the Freehand Draw option from the pop-up menu. This enables users to activate the freehand drawing mode. Once enabled, a contextual toolbar becomes available, allowing users to customize the stroke color and width for their freehand annotations.

After completing the freehand drawing annotation, the Image Editor enables a quick access toolbar that provides an option to delete the drawing.

In the following code example, the EnableFreehandDrawAsync, and DisableFreehandDrawAsync methods are used to toggle the freehand drawing mode.

@using Syncfusion.Blazor.ImageEditor
@using Syncfusion.Blazor.Buttons
 
<div style="padding-bottom: 15px">
    <SfButton OnClick="EnableAsync">Enable Freehand Draw</SfButton>
    <SfButton OnClick="DisableAsync">Disable Freehand Draw</SfButton>
</div>
 
<SfImageEditor @ref="ImageEditor" Toolbar="customToolbarItem" Height="400">
    <ImageEditorEvents Created="CreatedAsync"></ImageEditorEvents>
</SfImageEditor>
 
@code {
    SfImageEditor ImageEditor;
    private List<ImageEditorToolbarItemModel> customToolbarItem = new List<ImageEditorToolbarItemModel>() { };
 
    private async void CreatedAsync()
    {
        await ImageEditor.OpenAsync("nature.png");
    }
 
    private async void EnableAsync()
    {
        await ImageEditor.EnableFreehandDrawAsync();
    }
 
    private async void DisableAsync()
    {
        await ImageEditor.DisableFreehandDrawAsync();
    }
}
Freehand annotation options in Blazor Image Editor
Freehand annotation options in Blazor Image Editor

Zooming an image

The Blazor Image Editor control provides zoom functionality to magnify or reduce the image size. Users can zoom in or out and pan the image to view specific areas of interest. This can be achieved through either the toolbar or the ZoomAsync method.

Users can easily zoom in or out in the toolbar by clicking the dedicated Zoom In and Zoom Out buttons. This provides a convenient way to adjust the zoom level of the images without additional programming.

Alternatively, developers can utilize the ZoomAsync method to control the zoom functionality programmatically based on specific requirements or user interactions outside the toolbar.

Refer to the following code example.

@using Syncfusion.Blazor.ImageEditor
@using Syncfusion.Blazor.Buttons
 
<div style="padding-bottom: 15px">
    <SfButton OnClick="ZoomInAsync">Zoom In </SfButton>
    <SfButton OnClick="ZoomOutAsync">Zoom Out </SfButton>
</div>
 
<SfImageEditor @ref="ImageEditor" Toolbar="customToolbarItem" Height="400">
    <ImageEditorEvents Created="CreatedAsync"></ImageEditorEvents>
</SfImageEditor>
 
@code {
    SfImageEditor ImageEditor;
    private List<ImageEditorToolbarItemModel> customToolbarItem = new List<ImageEditorToolbarItemModel>() { };
    ImageEditorPoint point = new ImageEditorPoint { X = 300, Y = 300 };
    private async void CreatedAsync()
    {
        ImageEditor.OpenAsync("nature.png");
    }
 
    private async void ZoomInAsync()
    {
        ImageEditor.ZoomAsync(2, point);
    }
 
    private void ZoomOutAsync()
    {
        ImageEditor.ZoomAsync(1, point);
    }
}
Zooming an image using Blazor Image Editor
Zooming an image using Blazor Image Editor

Filters and finetuning

You can apply filters to alter the appearance of an image. Image filters are predefined effects that can be applied to an image to add visual interest or enhance certain features. The available filters are cold, warm, chrome, sepia, grayscale, and invert. We can apply filters by using either the toolbar or the ApplyImageFilterAsync method.

You can finetune the image filters to alter the appearance of an image. Adjust the settings of an image filter to achieve the desired effect. The available finetuning options are brightness, contrast, exposure, hue, saturation, opacity, and blur. You can use them through either the toolbar or the FinetuneImageAsync method.

In the following code example, the ApplyImageFilterAsync and FinetuneImageAsync methods are used to perform filter and finetuning actions.

@using Syncfusion.Blazor.ImageEditor
@using Syncfusion.Blazor.Buttons
 
<div style="padding-bottom: 15px">
    <SfButton OnClick="BrightnessAsync">Brightness</SfButton>
    <SfButton OnClick="SepiaAsync">Sepia</SfButton>
</div>
 
<SfImageEditor @ref="ImageEditor" Toolbar="customToolbarItem" Height="400">
    <ImageEditorEvents Created="CreatedAsync"></ImageEditorEvents>
</SfImageEditor>
 
@code {
    SfImageEditor ImageEditor;
    private List<ImageEditorToolbarItemModel> customToolbarItem = new List<ImageEditorToolbarItemModel>() { };

    private async void CreatedAsync()
    {
        ImageEditor.OpenAsync("nature.png");
    }
 
    private async void BrightnessAsync()
    {
        ImageEditor.FinetuneImageAsync(ImageFinetuneOption.Brightness, 75);
    }
 
    private void SepiaAsync()
    {
        ImageEditor.ApplyImageFilterAsync(ImageFilterOption.Sepia);
    }
}
Filtering and finetuning an image using Blazor Image Editor
Filtering and finetuning an image using Blazor Image Editor

Undo and redo actions

The undo functionality is used to reverse the most recent modification to an image. By invoking the UndoAsync or Undo button, the Image Editor reverts the most recently applied action, effectively restoring the image to its previous state.

On the other hand, the redo functionality is used to reapply an action that was previously undone. After using the undo operation, users can use the RedoAsync method or Redo button to reapply the action and return the undone changes.

These features enhance the editing experience by allowing users to experiment, revert changes, and selectively apply or reapply modifications to achieve the desired result.

In the following code example, the UndoAsync and RedoAsync methods are used to undo and redo the actions performed in the Blazor Image Editor component.

@using Syncfusion.Blazor.ImageEditor
@using Syncfusion.Blazor.Buttons
 <div style="padding-bottom: 15px">
    <SfButton OnClick="RectangleAsync">Draw Rectangle</SfButton>
    <SfButton OnClick="EllipseAsync">Draw Ellipse</SfButton>
    <SfButton OnClick="UndoAsync">Undo</SfButton>
    <SfButton OnClick="RedoAsync">Redo</SfButton>
</div>
 
<SfImageEditor @ref="ImageEditor" Toolbar="customToolbarItem" Height="400">
    <ImageEditorEvents Created="CreatedAsync"></ImageEditorEvents>
</SfImageEditor>
 
@code {
    SfImageEditor ImageEditor;
    private List<ImageEditorToolbarItemModel> customToolbarItem = new List<ImageEditorToolbarItemModel>() { };
 
    private async void CreatedAsync()
    {
        await ImageEditor.OpenAsync("nature.png");
    }
 
    private async void RectangleAsync()
    {
        await ImageEditor.DrawRectangleAsync(200, 50, 120, 120, 4, "#fff", "blue");
    }
 
    private async void EllipseAsync()
    {
        await ImageEditor.DrawEllipseAsync(400, 50, 70, 70, 4, "#fff", "green");
    }

    private async void UndoAsync()
    {
        await ImageEditor.UndoAsync();
    }
 
    private async void RedoAsync()
    {
        await ImageEditor.RedoAsync();
    }
}
Undo and redo options in Blazor Image Editor
Undo and redo options in Blazor Image Editor

Toolbar

The Blazor Image Editor provides options to customize both the built-in and contextual toolbars.

The built-in toolbar can be customized by utilizing the Toolbar property. This allows developers to specify which toolbar items should be enabled and displayed in the Image Editor toolbar.

The ToolbarUpdating event can be utilized to add, remove, or modify toolbar items dynamically, ensuring the contextual toolbar offers relevant and desired customization options during annotation.

In the following code example, the contextual toolbar for the line is rendered by hiding the default delete button and adding a custom delete button using the ToolbarUpdating event.

To retrieve the inserted shapes, we’ve used the GetShapesAsync method, which provides a collection of shapes represented by ShapeSettings. This method allows you to access and work with the shapes inserted into the image.

@using Syncfusion.Blazor.ImageEditor 
@using Syncfusion.Blazor.Navigations

<SfImageEditor @ref="ImageEditor" Height="400"> 
    <ImageEditorEvents Created="CreatedAsync" ToolbarUpdating="ToolbarUpdate" ToolbarItemClicked="ToolbarItemClickedAsync">
    </ImageEditorEvents> 
</SfImageEditor>
  
@code {
    SfImageEditor ImageEditor; 
    private async void CreatedAsync()
    { 
        await ImageEditor.OpenAsync("nature.png"); 
    } 

    private void ToolbarUpdate(ToolbarEventArgs args)
    { 
        if (args.ToolbarType == ShapeType.Line)
        {
            var toolbarItemToRemove = args.ToolbarItems.FirstOrDefault(item => item.Name == "Remove");
           if (toolbarItemToRemove != null)
           {
                  toolbarItemToRemove.Visible = false;
           }
           args.ToolbarItems.Add(new ImageEditorToolbarItemModel { Text = "Delete", TooltipText = "Delete", Align = ItemAlign.Center }); 
        }
    } 

    private async void ToolbarItemClickedAsync(ClickEventArgs args)
    {
        ShapeSettings[] shapeSetting = await ImageEditor.GetShapesAsync();
        if (args.Item.Text == "Delete" && shapeSetting.Length > 0)
        {
             await ImageEditor.DeleteShapeAsync(shapeSetting[0].ID);
         }
    }
}
Customizing the toolbar in Blazor Image Editor
Customizing the toolbar in Blazor Image Editor

Toolbar template

The Image Editor component allows users to replace its default toolbar with a custom, user-specific UI. This can be achieved by utilizing the ToolbarTemplate property. With this property, developers can design and implement a toolbar that includes their desired features, layout, and interactions.

In the following code example, the toolbar of the Image Editor is replaced with the user-specific UI using the ToolbarTemplate property.

@using Syncfusion.Blazor.ImageEditor 
@using Syncfusion.Blazor.Buttons 

<SfImageEditor @ref="ImageEditor" Height="400px">
    <ImageEditorEvents Created="CreatedAsync"></ImageEditorEvents> 
    <ImageEditorTemplates> 
        <ToolbarTemplate> 
            <SfButton OnClick="ClickAsync">Enable FreehandDraw</SfButton> 
        </ToolbarTemplate> 
    </ImageEditorTemplates> 
</SfImageEditor> 

@code {
    SfImageEditor ImageEditor;
    private async void CreatedAsync()
    {
        await ImageEditor.OpenAsync("nature.png");
    }

    private async void ClickAsync() 
    {
        await ImageEditor.EnableFreehandDrawAsync(true); 
    } 
}
Customizing the toolbar using templates in Blazor Image Editor
Customizing the toolbar using templates in Blazor Image Editor

Quick access toolbar

The quick access toolbar becomes active when we select annotations. The default items on the toolbar may differ depending on the annotation. The options to clone and delete annotations will appear by default. Additionally, users can personalize the toolbar items by utilizing the QuickAccessToolbarOpening event.

Quick access toolbar template

The Image Editor provides the flexibility to replace its default quick access toolbar with a custom, user-specific UI. This can be achieved by utilizing the QuickAccessToolbarTemplate property. This empowers users to create a personalized editing experience that perfectly suits their app’s needs and enhances the user interface.

Refer to the following code example.

@using Syncfusion.Blazor.ImageEditor 
@using Syncfusion.Blazor.Buttons 

<SfImageEditor @ref="ImageEditor" Height="400px"> 
    <ImageEditorEvents Created="CreatedAsync"></ImageEditorEvents> 
    <ImageEditorTemplates> 
        <QuickAccessToolbarTemplate> 
            <SfButton OnClick="ClickAsync">Delete</SfButton> 
        </QuickAccessToolbarTemplate> 
    </ImageEditorTemplates> 
</SfImageEditor> 

@code {
    SfImageEditor ImageEditor;
    private async void CreatedAsync()
    {
        await ImageEditor.OpenAsync("nature.png");
    }

    private async void ClickAsync() 
    {
        ShapeSettings[] shapeSetting = await ImageEditor.GetShapesAsync();
        if (args.Item.Text == "Delete" && shapeSetting.Length > 0)
        {
             await ImageEditor.DeleteShapeAsync(shapeSetting[0].ID);
         }
    } 
}
Customizing the quick access toolbar in Blazor Image Editor
Customizing the quick access toolbar in Blazor Image Editor

Exporting an image

Users can save the edited images in the file formats PNG, JPEG, and SVG. This can be achieved by utilizing the ExportAsync method, where users can specify the desired file type and provide a file name for the saved image.

Adaptive and touch-friendly UI

The Blazor Image Editor is designed to be responsive and adapt to various screen sizes, making it suitable for all mobile devices by default. It provides a touch-friendly interface, allowing users to interact with the control using their fingers, stylus pens, or a mouse on the desktop and mobile devices.

Adaptive UI in Blazor Image Editor
Adaptive UI in Blazor Image Editor

Note: For more details, refer to the Blazor Image Editor live demos and documentation.

Upcoming features

The Blazor Image Editor component is now available in preview mode, and we’ve plans to include the following features in our future releases:

  • Image annotation: To insert an image as an annotation.
  • Resizing: To resize the images.
  • IPTC standard: To add a meta tag to support IPTC standards.
  • Frame support: To add a frame to the image.

Conclusion

Thanks for reading! In this blog, we’ve explored the features of the new Blazor Image Editor component in our latest 2023 Volume 2 release. To see the other updates of this release, we recommend visiting our Release Notes and What’s New pages. Stay informed about the latest enhancements and share your feedback in the comments section.

If you’re not a Syncfusion customer, you can download a free trial of Essential Studio for Blazor to start exploring its controls immediately.

For questions, you can contact us through our support forumssupport portal, or feedback portal. Our team is always ready to assist you!

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed