如何使用 PHP(最好在 CodeIgniter 中)将 JPG 图像转换为 TGA?
我们正在开发一个网站,用户正在为特定部分上传图像。用户可以上传 jpg 文件,上传时我们需要将其转换为 TGA 格式。
有没有 PHP 或 CI 库可以做到这一点?我知道这对于 GD 库或 PHP 图像魔法来说是不可能的。
感谢您的任何帮助。
干杯
We're developing a website and for a particular section user is uploading images. User can upload a jpg file, which on upload we need to convert it to TGA format.
Is there any PHP or CI library which can do this? I know this is not possible with GD library or PHP image magic.
Thanks for any help.
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 PHP imagemagick 的 setImageFormat 来做到这一点!
并且 imagemagick 支持 TGA(读、写)。
来自评论:
You can do that with PHP imagemagick's setImageFormat!
And imagemagick support TGA (Read, Write).
From the comments: