The problem is that image bytes are not available in the HtmlText property and I´m using that property to save the edited html.
This is the image tag generated after I inserted an image:
How can I do to get the bytes of the added image so I can populate the correct src code there?
Is there any way I can get the mapping between that Id and the image bytes?
Syncfusion.XForms.RichTextEditor.ImageSource imageSource = new Syncfusion.XForms.RichTextEditor.ImageSource
{
ImageStream = imageStream,
SaveOption = ImageSaveOption.Base64
};
imageInsertedEventArgs.ImageSourceCollection.Add(imageSource);
} |