|
SKBitmap invertedBitmap = XXXImageProcessor.ThresholdFilter(this.thresholdTempSKBitmap, sliderValue); |
Hi Marco Negroni,Thanks for contacting Syncfusion support.We checked the reported issue based on your use case by adding the SKImage source to the image editor and we are unable to reproduce the issue from our side. Also, we don’t know image process type used in your code.
SKBitmap invertedBitmap = XXXImageProcessor.ThresholdFilter(this.thresholdTempSKBitmap, sliderValue);Can you please share a simple sample that replicates the issue, and It will be helpful for us to check the reported issue and provide a faster solution.Regards,Eswaran
Hi Marco Negroni,
Thanks for sharing the information.
We have checked the reported query with a shared sample, and random issue
occurred when continuously update the image editor source. You could resolve
this can resolve this problem by updating source with little delay
as per the below code snippet,
|
private async void
Button_Clicked(object sender,
EventArgs e) {
imageLoaded = false;
for (int i = 0; i < 100; i++)
{
if (!imageLoaded)
{
this.imageEditor.Source =
ImageSource.FromResource("IESample.Image.jpeg", this.assembly);
await
Task.Delay(150);
}
} } |
As your app similar like this this scenario, please try above approach to
resolve the issue.
Please let us know if you need any further assistance.
Regards,
Sridevi S.