在php中通过图像魔术转换图像

时间:2019-04-02 11:01:21

标签: php imagemagick

我必须将gif图像转换为png图像。为此,我已经尝试过了。图像文件位于文件夹(localhost)中。

我尝试了以下代码。

$imageFile = "14981180607.gif";
$temp = sys_get_temp_dir();
file_put_contents($temp, file_get_contents($imageFile) );

exec("convert ".escapeshellarg($temp)." img/xx_%05d.png");

我需要转换图像并将其存储在我提到的路径的img文件夹中。

0 个答案:

没有答案