Hi Giorgio,
Greetings from Syncfusion support.
We have analyzed your query, by default image saved as blob format in RichTextEditor. You can save image in base64 format by configuring saveFormat as “Base64“on “insertimagesettings“ as follows,
Code example:
export class Default extends SampleBase {
constructor() {
this.imageSettings = {
saveFormat: "Base64"
}
}
render() {
return (
<RichTextEditorComponent insertImageSettings={this.imageSettings}>
<Inject services={[HtmlEditor, Toolbar, Image, Link, QuickToolbar]}/>
</RichTextEditorComponent>
)
}
}
|
We have prepared sample for your reference, get it from below link
Kindly let us know if the provided information is helpful or not to achieve your requirement.
Regards,
Pandiyaraj M