PHP determines whether a gif image is animated_PHP tutorial

WBOY
Release: 2016-07-13 10:26:52
Original
788 people have browsed it

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(...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template