Home > php教程 > php手册 > body text

php判断gif图片是否为动画

WBOY
Release: 2016-06-13 09:32:29
Original
1103 people have browsed it

  php判断gif图片是否为动画,即帧数是否大于1。代码如下:

  

  { $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("zzsky.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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!