Image from copyboard(no url) can not be pasted to HtmlEditor, by other tools change it to base64 then it works. So how to paste Image from copyboard to HtmlEditor directly?
I've just copied an image file from my Windows explorer and pasted it in our demo and everything worked as expected:
Paste: <--img src="/upload-2024-08-26-aed14d37-3b23-4489-852f-76619a5c2957.png"-->
There has upload action in the demo then uses the url。
But how can the htmleditor transfer the image in memory to base64 automatically no need upload action.
My app is wpf_Blazor which stores images by base64 in database.
If you remove UploadUrl from the code and press run button:
you will be able to paste again and the image will be inserted exactly as base64 string:
@enchev Thanks very much! It is perfect !