我正在使用Django + CKeditor
设计网站。我的要求是缩小图像大小,然后再将其上传到服务器,因为我的图像尺寸为 3mb〜3000x2500像素,我正在尝试使用“ imageresize
”插件来调整客户端图像的大小。>
1。在文档Config中,将maxWidth,maxHeight设置为800。我不知道在哪里设置此配置。
2。还想知道是否有其他插件可以更好地与CKeditor配合使用以减小图像大小。
My settings.py
CKEDITOR_CONFIGS = {
'default': {
'height': 400,
'width': 900,
'toolbar': 'full',
'extraPlugins': ','.join(['html5audio', 'imageresize','youtube','image2']),
}
}
最新更新我尝试使用无法正常工作的图像进行“ imageresize
”。仍然保留在原始像素中。
谢谢。