@emagtechlabs/ckeditor5-classic-image-resize

1.0.6 • Public • Published

ckeditor5-classic-image-resize

CKEditor5 Classic Image Resize Plugin

This plugin allows you to edit the size of an image using width and height input, as well as providing an aspect ratio lock tool that makes it easy to scale without distorting the image.

Installation

npm i @emagtechlabs/ckeditor5-classic-image-resize

or

yarn add @emagtechlabs/ckeditor5-classic-image-resize

Usage

Update src/ckeditor.js with:

import ClassicImageResize from '@emagtechlabs/ckeditor5-classic-image-resize';

Editor.builtinPlugins = [
  // ...
  ClassicImageResize,
  // ...
];

Editor.defaultConfig = {
  // ...
  image: {
    toolbar: [
      // ...
      'imageSize:lockAspectRatio',
      'imageSize:width',
      'imageSize:height',
      // ...
    ]
  },
  // ...
};

Then

npm run build

or

yarn build

How it works

Upcasting

Toolbar Inputs
The plugin "upcasts" (reads from the DOM) the image <img> style attribute, checks for width: and height: and adds the values to the toolbar inputs.

Editing

Aspect Ratio Lock
While editing, the aspect ratio lock can be used for scaling the image using its native aspect ratio. (note: it will only scale on the width axis)

Downcasting

The plugin "downcasts" (writes to the DOM) the style attribute for both the <img> tag and the <figure> tag. This happens because images in ckeditor5 are wrapped in <figure> tags.

Issues

Feel free to submit issues and enhancement requests.

Package Sidebar

Install

npm i @emagtechlabs/ckeditor5-classic-image-resize

Weekly Downloads

22

Version

1.0.6

License

GPL

Unpacked Size

16.8 kB

Total Files

14

Last publish

Collaborators

  • beniamin
  • emagtechlabsadmin
  • pascu.adrian23
  • piriianulavinia