Info regarding SfImageEditor

Dear Team,
we've been using your image editor for quite a bit and we would like to make some changes:
- Is it possible to add custom buttons inside the Footer Toolbar and let these do custom actions? I've seen it in your documentation but I didn't get completely how to let these do determinate actions. Do I have to use the Text property?
- Is it possible to invert Header Toolbar and Footer Toolbar? (Footer on top and Header on bottom)
- Do you have, or know, any component for taking pictures that does not require to validate the photo after taking it? Eg: we currently use crossmedia TakePhotoAsync, after taking a photo the system requires to validate or cancel the taken photo, a requirement that i got to look on is to remove this validation
- Is your image editor able to manage multiple images at once like whats app, or do you have another component that is able to do so?
Regards

1 Reply

SS Sridevi Sivakumar Syncfusion Team April 22, 2021 03:29 PM UTC

Hi DANILO LONGONI,

Greetings from Syncfusion.


Query 1it possible to add custom buttons inside the Footer Toolbar and let these do custom actions
 
We have checked your reported query and we can add the custom toolbar icon as per the below code snippet and we can add the expected action while click the cutom toolbar icon in ToolbarItemSelected event as per the below code snippet.

[XAML]:
 
  <imageeditor:SfImageEditor  x:Name="imageEditor" EnableZooming="True"  Source="{Binding Image}" 
                                   PanningMode="SingleFinger" 
                                    HorizontalOptions="FillAndExpand" 
                                    VerticalOptions="FillAndExpand" > 

[C#]: 
 public partial class MainPage : ContentPage 
    { 
        public MainPage() 
        { 
            InitializeComponent(); 
  
            imageEditor.ToolbarSettings.ToolbarItems.Add(new FooterToolbarItem() {  Text = "Custom icon" }); 
            imageEditor.ToolbarSettings.ToolbarItemSelected += ToolbarSettings_ToolbarItemSelected; 
        } 
  
        private void ToolbarSettings_ToolbarItemSelected(object sender, ToolbarItemSelectedEventArgs e) 
        { 
            if(e.ToolbarItem.Text == "Custom icon") 
            { 
  
            } 
        } 
   } 

Please have a sample from below link 
https://www.syncfusion.com/downloads/support/directtrac/general/ze/ImageEditor_Sample312777613

For more information about adding FooterToolbarItem
https://help.syncfusion.com/xamarin/image-editor/toolbarcustomization#adding-footertoolbaritem

For more information for ToolbarItemSelected event
https://help.syncfusion.com/xamarin/image-editor/toolbarcustomization#toolbaritemselected-event

Query 2: Is it possible to invert Header Toolbar and Footer Toolbar?
We don't have direct support to achieve your requirement and we can achieve it by using the custom toolbar.

Query 3: Do you have, or know, any component for taking pictures that does not require to validate the photo after taking it?
We have checked this query, and we would like to inform you that after taking photo, generally it will validate that. And we don't know about other components.

Query 4: - Is your image editor able to manage multiple images at once like whats app, or do you have another component that is able to do so?
Currently we don’t have support for select any multi-images. We already logged a new control request for your requirement that can be tracked through our feedback portal below.

Feedback link: 
https://www.syncfusion.com/feedback/23321/multi-select-image-control

Please cast your vote to make it count. We will prioritize the features every release based on the demands and we do not have an immediate plan to implement this feature since we committed with already planned work. So, this feature will be available for any of our upcoming releases.

If you have any more specifications/suggestions to the feature request, you can add it as a comment in the portal. We will let you know when this feature is implemented.


Regards,
 
Sridevi S. 
  
 


Loader.
Up arrow icon