Contribute to this guideReport an issue

guideEasy Image Integration

This feature was introduced in CKEditor 4.9. It is provided through an optional plugin that is not included in the CKEditor 4 presets available from the Download site. Read below how to to enable it.

# Quick start

# Download CKEditor 4 with the Easy Image Plugin

Currently the Easy Image plugin is not included in the CKEditor 4 presets. You need to add it to your custom CKEditor build with online builder. Additionally, you need to remove the default Image plugin from your editor, either with online builder or through the configuration:

config.removePlugins = 'image';

To help you in getting started, below you can find direct links to the online builder with Easy Image already included (and the default Image plugin removed):

If you prefer to simply download a zip package:

# Sign up to CKEditor Cloud Services (Easy Image)

Follow the Easy Image - Quick start guide to set up an account.

# Configure CKEditor

After setting up an account and following the previous instructions, you should be ready to configure the editor and set two required configuration options:

CKEDITOR.replace( 'editor', {
    extraPlugins: 'easyimage',
    removePlugins: 'image',
    cloudServices_tokenUrl: 'https://example.com/cs-token-endpoint',
    cloudServices_uploadUrl: 'https://your-organization-id.cke-cs.com/easyimage/upload/'
} );

The values of cloudServices_uploadUrl and cloudServices_tokenUrl are unique for each website and can be found in the CKEditor Ecosystem dashboard (go to Website management and press the CKEditor configuration button).

This is all. If you are having trouble in setting up Easy Image, please contact us.

# Customizing Easy Image

Easy Image offers a few customization options, including configuring custom image styles with classes and creating your own progress reporters.

# Custom Styles with Classes

The appearance of images inserted with Easy Image can be easily altered by using custom styles defined by the editor implementer. These styles can then be applied by the user through the balloon toolbar connected with every Easy Image widget or with the context menu.

The following styles are available out-of-the-box, with the first two enabled by default:

  • Full Size Image – It stretches the image to 100% of the editor width.
  • Side Image – It changes the image width to 50% of the editor width and puts it aside, on the right.
  • Align Left – Aligns the image to the left.
  • Align Center – Centers the image.
  • Align Right – Aligns the image to the right.

By default all styles are applied via CSS classes and produce a markup similar to the one below:

<figure class="easyimage easyimage-full">
  <img alt="Three Monks walking on ancient temple." width="820" srcset="[…]" sizes="100vw" src="https://33333.cdn.cke-cs.com/0fNqCUeBSal4ENvGfd7K/images/80b10f36950c55c6bb4c515f10546d5a6b413699c520b7d7_umbrellas.jpg" />
  <figcaption></figcaption>
</figure>

The image styles can be defined with the easyimage_styles option that accepts an object with style definitions.

For example, the following configuration will modify the built-in Full Size Image (full) style and add a new one, Skip Border (skipBorder):

config.easyimage_styles = {
    full: {
        // Changes just the class name, the label icon remains unchanged.
        attributes: {
            'class': 'my-custom-full-class'
        }
    },
    skipBorder: {
        attributes: {
            'class': 'skip-border'
        },
        group: 'borders',
        label: 'Skip border',
        icon: 'icons/skip-border.png',
        iconHiDpi: 'icons/skip-border.hidpi.png'
    }
};

Do remember, though, that you need to define the CSS rules for these classes in your stylesheet. Once this configuration option is set, corresponding style definitions must be supplied to the editor:

  • For classic editor it can be done by defining additional styles in the stylesheets loaded by the editor. The same styles must be provided on the target page where the content will be loaded. Alternatively additional stylesheets can be added using contentsCss.
  • For inline editor the styles can be defined directly with <style> ... <style> or <link href="..." rel="stylesheet"> elements, within the <head> section of the page.
  • For both types of editors the styles can be defined using addCss.

You also need to enable these custom styles to the user by adding them to the Easy Image balloon toolbar with the easyimage_toolbar configuration option. This option will integrate your styles with the context menu, too.

# Custom Progress Reporters

It is possible to customize the upload progress reporters through the widget’s definition progressReporterType property. By default there is only one type of upload progress reporter available, the progress bar.

You can add your own types of upload progress reporters by subclassing progressReporter and then using your subclass to modify the Easy Image widget definition:

config.on = {
    widgetDefinition: function( evt ) {
        if ( evt.data.name === 'easyimage' ) {
            widgetDef.progressReporterType = yourReporterClass;
        }
    }
};

# About Easy Image

For more information about Easy Image refer to Features Overview – Easy Image.