Codeigniter图像resize()缩略图名称问题
当我调整图像大小并保持 $config['create_thumb'] = true
Codeigniter 会在调整大小的图像名称末尾添加字符串“_thumb”。
我想问的是,是否可以在图像名称示例的开头添加后缀“_thumb”
: 调整大小后的original_name.jpg
: original_name_thumb.jpg
我想要什么: 拇指_original_name.jpg
如有任何帮助,我们将不胜感激!
When I resize an image keeping $config['create_thumb'] = true
Codeigniter adds the string "_thumb" in the end of the name of resized image.
What I want ask is, is it possible to add the suffix "_thumb" in the beginning of the image name
example:
original_name.jpg
after resizing:
original_name_thumb.jpg
What I want:
thumb_original_name.jpg
Any kind of help is appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以尝试这个:
如果你对 CI 图像处理库有其他问题,也许你可以尝试 ImageMoo。
You can try this:
And if you have other problems with CI image manipulation library, maybe you can try ImageMoo.
如果您不想在缩略图文件名中添加后缀 _thumb 那么
使用 $config['thumb_marker'] = false;
If u don't want to add the suffix _thumb in thumbnail file name then
use
$config['thumb_marker'] = false;
这可以通过以下方式实现
有关调整图像大小的更多信息,请查看以下代码。
this can be achieved by following way
for more information about re-size image check out following Code.