Home > php教程 > php手册 > php 判断gif图片是否为动画图片

php 判断gif图片是否为动画图片

WBOY
Release: 2016-06-02 09:14:50
Original
939 people have browsed it

如果利用php来判断就简单了,原理很简单:

识别是否是动画,要检查文件中是否包含chr(0×21).chr(0xff).chr(0x0b).’NETSCAPE2.0‘chr(0×21).chr(0xff)

是gif图片中扩展功能段的标头‘NETSCAPE2.0‘是扩展功能执行的程序名


代码如下。

 代码如下 复制代码

function IsAnimatedGif($filename) 

    $fp = fopen($filename, 'rb'); 
    $filecontent = fread($fp, filesize($filename)); 
    fclose($fp); 
   return strpos($filecontent,chr(0x21).chr(0xff).chr(0x0b).'NETSCAPE2.0') === FALSE?0:1; 

echo IsAnimatedGif("test.gif"); 
?>



source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template