[Android] Drawing tools cover a portion of the image

Good afternoon,
drawing using the SfImageEditor covers a portion of the image, so it's impossible to draw at the image bottom, the image should be resize so the user can see and draw at the bottom part.

You can find a video attached.

Please it's urgent because we released our app,
Thanks in advance.


Attachment: 20200224_152157_21ca4fda.zip

17 Replies

HM Hemalatha Marikumar Syncfusion Team February 25, 2020 02:20 PM UTC

Hi Marco Negroni, 
 
Greetings from Syncfusion. 
 
Currently we are validating the reported issue and we will update the complete details on February 26,2020. 
 
We appreciate your patience until then. 
 
Regards, 
Hemalatha M. 



RS Ramya Soundar Rajan Syncfusion Team February 26, 2020 06:30 PM UTC

Hi Marco Negroni,  
 
We confirmed “[Android] SfImageEditor sub toolbar is visible when drawing path on image” as an issue. We will include this fix on or before 11th March 2020. 
 
You can now track the status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link. 
 
 
Note: The provided feedback link is private, and you need to login to view this feedback. 
 
Regards, 
Ramya 



MN Marco Negroni replied to Ramya Soundar Rajan March 16, 2020 11:14 AM UTC

Hi Marco Negroni,  
 
We confirmed “[Android] SfImageEditor sub toolbar is visible when drawing path on image” as an issue. We will include this fix on or before 11th March 2020. 
 
You can now track the status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link. 
 
 
Note: The provided feedback link is private, and you need to login to view this feedback. 
 
Regards, 
Ramya 


Good morning,

any news?

Thanks in advance


RS Ramya Soundar Rajan Syncfusion Team March 16, 2020 12:27 PM UTC

Hi Marco Negroni, 
 
As we informed in the provided feedback, we will include this fix on volume1 2020 beta release which will be rolled out on tomorrow 17th March 2020. 
 
Regards, 
Ramya S 



RS Ramya Soundar Rajan Syncfusion Team March 19, 2020 06:11 PM UTC

Hi Marco Negroni,  
  
Thanks for your patience.  
  
We are glad to announce that Volume 1 2020 beta release has been rolled out. The reported issue fix has been included in it.  
 
 
Please check and let us know if you need any further assistance.  
  
Regards,  
Ramya S 



MN Marco Negroni replied to Ramya Soundar Rajan April 7, 2020 07:33 AM UTC

Hi Marco Negroni,  
  
Thanks for your patience.  
  
We are glad to announce that Volume 1 2020 beta release has been rolled out. The reported issue fix has been included in it.  
 
 
Please check and let us know if you need any further assistance.  
  
Regards,  
Ramya S 


Thanks, we tried the latest version and is partially fixed, works only if you start drawing from outside the palettes bar, but if you start drawing on the palettes bar is the same as before.

You can find a video attached.

Best regards

Attachment: 20200407_092257_5f852629.7z


RS Ramya Soundar Rajan Syncfusion Team April 8, 2020 01:12 PM UTC

Hi Marco Negroni,  
  
We would like to inform that the sub toolbar will be hidden only when touch down on image and it will be shown in touch up. This is default behavior of SfImageEditor.  So, if you are drawing path on sub toolbar and it will not be hidden. 
 
Please get back us, if you have any concern. 
 
Regards, 
Ramya S 



MN Marco Negroni replied to Ramya Soundar Rajan April 8, 2020 01:18 PM UTC

Hi Marco Negroni,  
  
We would like to inform that the sub toolbar will be hidden only when touch down on image and it will be shown in touch up. This is default behavior of SfImageEditor.  So, if you are drawing path on sub toolbar and it will not be hidden. 
 
Please get back us, if you have any concern. 
 
Regards, 
Ramya S 


Yes this is the problem, the image area should be resized when the toolbar appears, if a user want to draw starting from the bottom or just the bottom part?

So this is a bug.

Thanks in advance


RS Ramya Soundar Rajan Syncfusion Team April 9, 2020 11:59 AM UTC

 Hi Marco Negroni, 

In our current implementation, path was not drawn on image when drawing on the color palette toolbar and this is the common behavior. We suggest you to use the custom toolbar item to draw path and the sub toolbar will be shown only when selecting the toolbar items such as color and opacity. Please refer the below code snippet for this.   
  
            Editor.SetToolbarItemVisibility("Path", false);  
            Editor.ToolbarSettings.ToolbarItems.Add(new FooterToolbarItem() {Icon=ImageSource.FromResource("IESample.penImage.png"),Name="addpath" });  
            Editor.ToolbarSettings.ToolbarItemSelected += ToolbarSettings_ToolbarItemSelected;  
  
        private void ToolbarSettings_ToolbarItemSelected(object sender, Syncfusion.SfImageEditor.XForms.ToolbarItemSelectedEventArgs e)  
        {  
            if (e.ToolbarItem.Name == "addpath")  
            {  
                Editor.AddShape(ShapeType.Path, new PenSettings() { });  
            }  
        }  
   
SampleLink:  
  
Please get back us, if you have any concern. 
  
Regards, 
Ramya S 



MN Marco Negroni replied to Ramya Soundar Rajan April 17, 2020 01:53 PM UTC

 Hi Marco Negroni, 

In our current implementation, path was not drawn on image when drawing on the color palette toolbar and this is the common behavior. We suggest you to use the custom toolbar item to draw path and the sub toolbar will be shown only when selecting the toolbar items such as color and opacity. Please refer the below code snippet for this.   
  
            Editor.SetToolbarItemVisibility("Path", false);  
            Editor.ToolbarSettings.ToolbarItems.Add(new FooterToolbarItem() {Icon=ImageSource.FromResource("IESample.penImage.png"),Name="addpath" });  
            Editor.ToolbarSettings.ToolbarItemSelected += ToolbarSettings_ToolbarItemSelected;  
  
        private void ToolbarSettings_ToolbarItemSelected(object sender, Syncfusion.SfImageEditor.XForms.ToolbarItemSelectedEventArgs e)  
        {  
            if (e.ToolbarItem.Name == "addpath")  
            {  
                Editor.AddShape(ShapeType.Path, new PenSettings() { });  
            }  
        }  
   
SampleLink:  
  
Please get back us, if you have any concern. 
  
Regards, 
Ramya S 


Thank very much,

i have one last problem, after the user releasing the drawing button the subtoolbar appears, also if i hide all the elements, the back buttons appear, how can i hide the back button or just avoid that event after drawing?

Thanks in advance


MN Marco Negroni April 20, 2020 10:02 AM UTC

There is also one other problem, if start drawing using "AddShape" method, on UWP automatically start drawing on imageeditor mouseenter instead of waiting the click of the user...


Please we need these fixes as soon as possible, because we are in production.

Thanks in advance


RS Ramya Soundar Rajan Syncfusion Team April 20, 2020 12:52 PM UTC

Hi Macro, 
 
Currently we are checking on the reported query and update you the status on tomorrow April 21, 2020. 
 
Regards, 
Ramya S 



RS Ramya Soundar Rajan Syncfusion Team April 21, 2020 01:54 PM UTC

Hi Macro,  
 
Thanks for your patience.  
 
We can reproduce the reported issue and we confirmed Back button showing when draw path using custom toolbar item” as an issue. And the fix will be included in our Weekly NuGet which is scheduled to be rolled out on April 28, 2020. We appreciate your patience until then.  
 
You can now track the status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link.   
 
 
Note: The provided feedback link is private, and you need to login to view this feedback.   
 
Regards,  
Ramya S.  



RS Ramya Soundar Rajan Syncfusion Team April 21, 2020 04:34 PM UTC

Hi Macro,  
 
Please ignore the previous update. 
 
We can reproduce the reported issues Back button showing when draw path using custom toolbar item” andUWP automatically start drawing on imageeditor mouseenter instead of waiting the click of the user. And the fix will be included in our Weekly NuGet which is scheduled to be rolled out on April 28, 2020. We appreciate your patience until then.  
 
You can now track the status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link.   
 
 
Note: The provided feedback link is private, and you need to login to view this feedback.   
 
Regards,  
Ramya S.  



RS Ramya Soundar Rajan Syncfusion Team April 28, 2020 09:51 AM UTC

Hi Macro, 
 
We are glad to announce that our weekly NuGet was rolled out and fix for the reported issue was included in the weekly NuGet. 
 
NuGet Version: 18.1.0.46
 
We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance. 
 
Regards, 
Ramya S. 



MN Marco Negroni April 28, 2020 11:40 AM UTC

Thank very much


RS Ramya Soundar Rajan Syncfusion Team April 29, 2020 06:56 AM UTC

Hi Marco, 
 
Thanks for the update. Please get in touch with us if you would require any further assistance. 
 
Regards, 
Ramya S 


Loader.
Up arrow icon