使用 codeigniter 固定大小创建缩略图;
如何创建原始尺寸(任意尺寸)至 50 x 50(固定尺寸)的缩略图链接文本
当将图像添加到灯箱时,任何尺寸的所有图像都会调整为 50 x 50 尺寸,如何使用 codeigniter 图像类实现它;
想象一下,当我使用“maintain_ratio”“on”调整其大小时,我有 600x320 尺寸的图像,当我将其大小调整为 50x50 时,它给了我 50x27 尺寸。无论如何,如果我将maintain_ration“关闭”,它的大小会很好地调整为50x50,但输出会变形
How do I create thumbnail form original size (any size) to 50 x 50 (fixed size) link text
when add images to lightbox all images in any size will resize to 50 x 50 dimention how to implement that with codeigniter image class ;
imagine I have image with 600x320 dimensions when i re size it with maintain_ratio "on" it's gave me 50x27 dimensions when i re size it to 50x50 . anyway if I turn maintain_ration "off" it's resized nicely to 50x50 but output is deformed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定你在问什么。您想要将图像大小调整为 50x50 还是想要创建灯箱效果。要调整大小,只需按照用户指南中的说明进行操作即可。它们非常简单: http://codeigniter.com/user_guide/libraries/image_lib.html< /a>
如果你想创建一个灯箱,那么你需要使用 JavaScript 而不是 codeigniter。如果您不想构建自己的框架,可以从不同的 js 框架中选择负载。
希望有帮助。
I'm not exactly sure what you are asking. Do you want to resize an image to 50x50 or do you want to create a lightbox effect. To resize simply follow the instructions in the user guide. They're very straightforward: http://codeigniter.com/user_guide/libraries/image_lib.html
If you want to create a lightbox then you will need to use JavaScript not codeigniter. There are loads out there to choose from for different js frameworks if you don't want to build your own.
Hope that helps.