Rich text editor with image hosting

Is there a rich text editor that has image hosting? for example, using stackoverflow, they use imgur to post images.

or is there another way, for example using api? im using asp.net mvc / c #

+4
source share
7 answers

ckeditor (text) + ckfinder (image)

They are brothers:)

+3
source
+1
source

Try this SO question: https://stackoverflow.com/questions/1801458/free-image-hosting-with-open-api

There are several possible options, but you are looking at creating your own connector for a text editor that should interact with the API, but having said that, for the most part, you will probably write a connector for the image loading anyway, or at least Searching for one that works, since most (free) RTEs do not provide built-in file and image upload functions.

0
source

Not sure if this is completely what you need, but it might be worth taking a look at using the Yahoo YUI + Flickr editor to host your images: http://developer.yahoo.com/yui/examples/editor/flickr_editor.html

0
source

jquery tinymce is the best option. Since there are many plugins available for uploading images that can be easily integrated into the editor

TinyMCE http://tinymce.moxiecode.com/download/download.php

The default download will be loaded. if you need to use some third-party plugins like this refer to it. http://www.danieloshea.com/products/806-image-selection-and-upload-plugin-for-tinymce

0
source

If you are looking for free material, use FCKEditors, it contains an image downloader that is already connected.

0
source

Try it, it works for me: I used tinymce RTE roxyfileman

0
source

Source: https://habr.com/ru/post/1341823/


All Articles