Home  >  Article  >  Backend Development  >  PHP determines whether a gif image is animated_PHP tutorial

PHP determines whether a gif image is animated_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:26:52757browse

PHP determines whether the gif image is animated, that is, whether the frame number is greater than 1. The code is as follows:

 { $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"); ?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/822512.htmlTechArticlephp determines whether the gif image is animated, that is, whether the frame number is greater than 1. The code is as follows: { $fp=fopen($filename, 'rb'); $filecontent=fread($fp, filesize($filename)); fclose($fp); return strpos(...
Statement:
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