Image Resize

Adds intuitive drag-and-drop resizing capabilities for images within the text editor, simplifying visual content adjustment.

Click on the image to see the resizer on the right side.

Code

<!DOCTYPE html>
<html>
    <head>
        <title>Redactor</title>
        <meta charset="utf-8">

        <!-- css -->
        <link rel="stylesheet" href="/your-folder/redactor.css" />
    </head>
    <body>
        <!-- element -->
        <textarea id="entry">...</textarea>

        <!-- js -->
        <script src="/your-folder/redactor.js"></script>
        <script src="/your-folder/plugins/imageresize/imageresize.js"></script>

        <!-- call -->
        <script>
        Redactor('#entry', {
            plugins: ['imageresize']
        });
        </script>
    </body>
</html>