How to resize/compress or Set default height width / stylesheet classes of Images Upload by django Ckeditor

Viewed 226

I'm Using Django-Ckeditor for RichTextUploadField, However, some images are pretty large and I need to resize/compress before sending it to server enter image description here

or If i can set default width and height or Stylesheet classes enter image description here

enter image description here

I tried this but no luck:

CKEDITOR_CONFIGS = {
'default': {
    'stylesSet': [
        {
            'name': 'Image-Fluid',
            'element': 'img',
            'attributes': {'class': 'img-fluid'},
        },
    ],
},

}

Need your help community. Any Idea How to make this possible. My CKeditor config: gist

0 Answers
Related