如何使用 PHP(最好在 CodeIgniter 中)将 JPG 图像转换为 TGA?

发布于 2024-12-22 04:51:36 字数 155 浏览 1 评论 0原文

我们正在开发一个网站,用户正在为特定部分上传图像。用户可以上传 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 技术交流群。

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

发布评论

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

评论(1

如何视而不见 2024-12-29 04:51:36

您可以使用 PHP imagemagick 的 setImageFormat 来做到这一点!

并且 imagemagick 支持 TGA(读、写)。

来自评论:

<?php
        $image = new Imagick();

        $image->setResolution(300, 300);
        $image->readImageBlob(...);
        // convert the output to TGA
        $image->setImageFormat('tga');
?>

You can do that with PHP imagemagick's setImageFormat!

And imagemagick support TGA (Read, Write).

From the comments:

<?php
        $image = new Imagick();

        $image->setResolution(300, 300);
        $image->readImageBlob(...);
        // convert the output to TGA
        $image->setImageFormat('tga');
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文