How does PHP determine if a GIF image is animated?

Source: Internet
Author: User

The first thing to think about is to look at the type with getimagesize () and find it all gif.

Then I think GIF animation is gif89 format, found that the beginning of the file is gif89, but many transparent pictures are also used in the gif89 format.

It seems necessary to analyze the paper. Baidu a bit, found that phpx.com has been resolved.

Description of Dinning:

Check if the file contains

Chr (0x21). chr (0xff). chr (0x0b). NETSCAPE2.0 '

Chr (0x21). Chr (0xff) is the header of an extended segment in a GIF picture

' NETSCAPE2.0 ' is the program name that the extended function executes

Finally, a function is organized:

/* * Determine if the picture is dynamic */function isanimatedgif ($filename) {$fp = fopen ($filename, ' RB '); $filecontent = Fread ($fp, FileSize ($file name); fclose ($fp); return Strpos ($filecontent, Chr (0x21) Chr (0xff). chr (0x0b). ' NETSCAPE2.0 ') = = = FALSE? 0:1;}

How does PHP determine if a GIF image is animated?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.