使用PHP / CodeIgniter动态检测动画GIF

时间:2012-12-10 10:02:56

标签: php codeigniter url gif animated-gif

有没有办法检查图片URL是否会返回动画效果?

我需要保存图片网址,然后在我的网站上显示图片,所以我想允许GIF扩展,但我需要避免使用动画GIF。是否可以在没有下载图像的情况下即时检测到它?

2 个答案:

答案 0 :(得分:4)

查看this comment to the documentation for function imagecreatefromgif(在php.net上)。即使您稍后要链接到该文件,您仍然需要先下载图像文件。

答案 1 :(得分:1)

我认为,ImageMagick确实是你最好的机会:

identify -format %n  posible_animation.gif

请查看论坛帖子 How to identify animated image format 以获取更多信息。