使用codeigniter的图像操作类时如何确保所有输出图像都是jpg格式?

发布于 2024-10-22 13:49:41 字数 384 浏览 1 评论 0原文

当然,我可以使用 php 默认函数将图像从保存的格式重新转换为 jpg,但是使用 codeigniter 类是否可能?

我正在使用 http://codeigniter.com/user_guide/libraries/image_lib.html调整图像大小以创建缩略图。可悲的是,即使我在配置中设置 $config['new_image'] = 'somepath/filename.jpg' 输出格式与输入格式相同。

图像文件将按指定命名,但不会转换为 jpg。 如何使用 codeigniter 库来做到这一点?

谢谢。

Of course I could reconvert the images from what ever format they are saved in to jpg using the php default functions, but is not it possible using the codeigniter class?

I am using http://codeigniter.com/user_guide/libraries/image_lib.html to resize images to create thumbnails. Sadly even if I set in my config $config['new_image'] = 'somepath/filename.jpg' the output format is in the same format as the input format.

The image file will be named like specified but not converted to jpg.
How to do this using the codeigniter librarys?

Thank you.

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

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

发布评论

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

评论(1

滥情稳全场 2024-10-29 13:49:41

尝试修改/扩展 CI 的库以使用 imagecreatefromjpeg ,错误时返回 FALSE 。希望这有帮助。

Try to modify/extend CI's library to make use of imagecreatefromjpeg which returns FALSE on error. Hope this helps.

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