我必须将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文件夹中。