我尝试了以下操作,但处理时间过长:
imagepng(imagecreatefromstring(file_get_contents($input)), $output);
其中$input
是动画GIF。
知道如何快速将大型动画GIF转换为PHP中的静态PNG吗?我只需要将GIF图像的第一帧快速转换为PNG。
答案 0 :(得分:0)
只需使用imagecreatefromgif
:
imagepng(imagecreatefromgif($input), $output);