使用codeigniter的图像操作类时如何确保所有输出图像都是jpg格式?
当然,我可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试修改/扩展 CI 的库以使用 imagecreatefromjpeg ,错误时返回 FALSE 。希望这有帮助。
Try to modify/extend CI's library to make use of imagecreatefromjpeg which returns FALSE on error. Hope this helps.