ckeditor-ckfinder 上传图像的默认属性(宽度和高度)
当我在 ckeditor 中使用 ckfinder 上传图像时,图像使用 css width & 可以很好地显示。高度。我希望图像具有默认的宽度和高度属性。我怎样才能做到这一点?
When I upload images using ckfinder in the ckeditor the image displays nicely using css width & height. I would like images to have default width and height attributes. How can I accomplish that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
单击“确定”按钮时设置默认宽度和高度。
替换用户输入的高度和高度具有默认高度和宽度值宽度(覆盖“OnOK”函数)
在 config.js 中
Set the default width and height while clicking "ok" button.
Replace the user entered height & width values with default height & width (Override "OnOK" Function)
In config.js
如果我没记错的话,CKFinder 只是将文件上传到服务器,并且不会更改其分辨率!但是,您可以使用/创建 CKEditor 插件来更改图像宽度和宽度。使用 CKEditor 图像对话框时的高度!
顺便说一句:该对话框允许您在将所选图像放入“文档”之前更改其宽度和高度! CKEditor 放置在那里的值是实际宽度和宽度。所选图像的高度!
If I'm not mistaken, CKFinder just uploads the file to the server, and does not changes its resolution! You can however, use/create a plugin for CKEditor to change the image width & height when using the image dialog of CKEditor!
Btw: That dialog allows you to change the width and height of the selected image before placing it in your "document"! The values that are placed there by CKEditor are the real width & height of the selected image!
查看_samples文件夹中的output_html.html
Look at the output_html.html in the _samples folder
在 CKEDITOR 的 plugins/image/dialogs 文件夹中的 image.js 中,
有两行:
如果更改
b.$.width
和b.$.height
带有数字或 null,上传任何图像尺寸时您都会有默认值。例如:
将插入宽度为 600px、高度成比例的图像。
请记住在编辑之前复制您的 image.js。
In the image.js which is in plugins/image/dialogs folder of the CKEDITOR
there are two lines:
If you change
b.$.width
andb.$.height
with numbers or null, you will have default values upon upload of any image size.For example:
Will insert an image with 600px width and proportional height.
Remember to duplicate your image.js before editing it.