|
private void Editor_ImageSaving(object sender, ImageSavingEventArgs args) { args.Cancel = true; // To avoid the image saved into pictures library var stream = args.Stream;// To get I/O stream from saving event argument } |
Hi Marian,
Thanks for the update.
We have created sample
to achieve your requirement and find the sample from below location
http://www.syncfusion.com/downloads/support/directtrac/general/ze/cropsam-851668137.zip
In the above sample, we
have called ToggleCropping method in button click and then crop with save in
another button click. The resulted stream will be shown in Image View. But
we are not able to reproduce white rectangle.
Please let us know if
you have any clarifications in the sample.
Thanks,
Michael
Hi Michael,Thank and that help! What a silly mistake I made... I did not call the args.Cancel = true.Regards,CT