Hi Michael,
Query 1: I've noticed that, without the delay, you get an Image with a text "Saving".
It is strange, that the control mix the text "Saving" with the image. I expected, that the info text would be displayed on an overlay and don't change my image. I hope that at the end my image is only cropped.
Query 2: On iOS it is necessary to use Device.BeginInvokeOnMainThread, because the app crash.
I had tried the code you presented, but it doesn't work! I got only a small stream with a white or black content. I hope, that your code works in the next version.
editor.ImageSaving += (sender, args) =>
{
args.Cancel = true; // This will avoid to save image in gallery also saving text will not show
var stream = args.Stream; // Here is the original stream
};
editor.Save();
There is one another bug in the code. I transfer a MemoryStream to the control. I don't want, that the image will be saved to the Picture Library. But it does! I'm getting always some strange black or white rectangle as a picture in the library!!!
Thanks
Marian