Ok, Micro $ oft or someone else needs to do something with this, at the same time, this is the result of debugging hours:
This solution uses the direct download function (already exists in Tinymce, but disabled by default), and using some jquery hack we add the image to the text box.
Resizing should be done after image injection. In recent versions of Tinymce, they have also added some good image editing tools that also work with this method.
Now the code:
This is an action that needs to be placed in the controller: (Mind the routing)
public string Upload(HttpPostedFileBase file) { string path; string saveloc = "~/Images/"; string relativeloc = "/Images/"; string filename = file.FileName; if (file != null && file.ContentLength > 0 && file.IsImage()) { try { path = Path.Combine(HttpContext.Server.MapPath(saveloc), Path.GetFileName(filename)); file.SaveAs(path); } catch (Exception e) { return "<script>alert('Failed: " + e + "');</script>"; } } else { return "<script>alert('Failed: Unkown Error. This form only accepts valid images.');</script>"; } return "<script>top.$('.mce-btn.mce-open').parent().find('.mce-textbox').val('" + relativeloc + filename + "').closest('.mce-window').find('.mce-primary').click();</script>"; }
And this is the complete code for Tinymce, it will create a text field and a couple of hidden fields. It will also make an instance of tinymce with plugins enabled.
<iframe id="form_target" name="form_target" style="display:none"></iframe> <form id="my_form" action="/admin" target="form_target" method="post" enctype="multipart/form-data" style="width:0;height:0;overflow:hidden"> <input name="file" type="file" onchange="$('#my_form').submit();this.value='';"> </form> <script type="text/javascript"> tinymce.init({ selector: "textarea", theme: "modern", plugins: [ "advlist autolink lists link image charmap print preview hr anchor pagebreak", "searchreplace wordcount visualblocks visualchars code fullscreen", "insertdatetime media nonbreaking save table contextmenu directionality", "emoticons template paste textcolor colorpicker textpattern imagetools" ], toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image", toolbar2: "print preview media | forecolor backcolor emoticons | ltr rtl", image_advtab: true, templates: [ {title: 'Test template 1', content: 'Test 1'}, {title: 'Test template 2', content: 'Test 2'} ], file_browser_callback: function(field_name, url, type, win) { if(type=='image') $('#my_form input').click(); } }); </script> <textarea id="my_editor" class="mceEditor">This will be an editor.</textarea>
You need to make a folder called "Images" in the root directory of the project to upload images. You also need a Tinymce js and jquery file.
Change the action of the form according to your setting !!!
You can also use html helpers. I do not like them. but go and use them instead of this handmade work if you want.
The idea is from here , but it was done in python, so I rewrote it to work with ASP.NET MVC5 and the latest version of TinyMCE.
I will continue to work on this in the next few days and edit this answer if necessary.