开发者

Is it possible to convert GIF file in JPG and save from one place to another in php?

开发者 https://www.devze.com 2023-02-15 18:44 出处:网络
Is there any way to convert开发者_开发百科 GIF file in JPG using php?Yes, using the gd or ImageMagick libraries or friendly wrappers around them like WideImage.There\'s several ways to convert image f

Is there any way to convert开发者_开发百科 GIF file in JPG using php?


Yes, using the gd or ImageMagick libraries or friendly wrappers around them like WideImage.


There's several ways to convert image formats in PHP.

One way is with GD:

$im=imagecreatefromgif("agifimage.gif");
imagejpeg($im, "ajpegimage.jpg");
imagedestroy($im);
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号