CKFinder - 如何使用 imageresize 插件?

发布于 2024-10-03 04:16:02 字数 94 浏览 2 评论 0原文

任何人都可以给我任何提示,或指向文档,关于如何使用 CKFinder 的 imageresize 插件,我在这方面什么也找不到?

谢谢,

托比

Can anyone give me any tips, or point to documentation, on how to use the imageresize plugin for CKFinder, I can find nothing on this at all?

Thanks,

Toby

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

以可爱出名 2024-10-10 04:16:02

docs.cksource.com 上有多种语言的文档,每种语言都有一个简短的介绍如何配置 ImageResize 插件。如果您可以确认您正在使用的语言,我相信您会得到更多帮助

There is documentation for multiple langauges at docs.cksource.com Each language has a short intro on how to configure the ImageResize plugin. If you can confirm the langauge you are using, I'm sure you get more help

世态炎凉 2024-10-10 04:16:02

您使用的是 PHP 版本,因此:

1) 在 config.php 中确保该插件确实已启用:

include_once "plugins/imageresize/plugin.php";

2) 确保设置了一些预定义的缩略图大小:

$config['plugin_imageresize']['smallThumb'] = '90x90';
$config['plugin_imageresize']['mediumThumb'] = '120x120';
$config['plugin_imageresize']['largeThumb'] = '180x180';

3) 要验证其是否有效,只需上传图像,右键单击它,然后在上下文菜单中选择“调整大小”。应该会出现一个对话框窗口,让您可以调整图像大小。您甚至可以在这里尝试:http://cksource.com/ckfinder/demo

You're using the PHP version, so:

1) In config.php make sure that the plugin is actually enabled:

include_once "plugins/imageresize/plugin.php";

2) Make sure that some predefined sizes for thumbnails are set:

$config['plugin_imageresize']['smallThumb'] = '90x90';
$config['plugin_imageresize']['mediumThumb'] = '120x120';
$config['plugin_imageresize']['largeThumb'] = '180x180';

3) To verify that it works, just upload an image, right-click on it and in the context menu select "Resize". A dialog window that let's you resize an image should show up. You may even try it here: http://cksource.com/ckfinder/demo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文