
Image Embed plugin
Embed images without uploading them onto a server (Base64 embedding)



TinyMCE Image Embed is the tool for inserting (embedding) images into the document you edit without uploading files to server. It uses features available to all current versions of popular browsers.
Features:
- Multiple images uploading
- Support of different image formats
- No server part is required
- Immediate image insertion



Install Image Embed plugin in TinyMCE 5
Self-hosted TinyMCE 5
Cloud TinyMCE 5
Install the plugin to TinyMCE 5 hosted on your server
- Copy
ImageEmbed
directory totinymce/plugins/
. - Edit TinyMCE config and add
ImageEmbed
toplugins
parameter.
Example
Here you can see sample TinyMCE initialization code with config inside it:
TinyMCE.init({
selector: "#editor",
plugins: "ImageEmbed",
});
Refer to TinyMCE add-ons installation manual for more details
Tell a friend about Image Embed
Share
Tweet
Send
Reviews
Very useful addon. It quickly generates a Base64 encoded version of that image you chose and inserts it in the content.
Helps to convert image to Base64 string. It does not send the file to the server to convert.
We needed a tool that converts the image files to Base64 and found this plugin.
We can verify that the plugin is working correctly.