日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

php gd gif动画,我可以检测使用PHP和GD的animationGIF?

發布時間:2023/12/10 php 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php gd gif动画,我可以检测使用PHP和GD的animationGIF? 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

在imagecreatefromgif()函數的PHP手冊頁中有一個簡短的代碼片段,應該是你所需要的:

由ZeBadger提供的圖片評論#59787

在search同樣問題的解決scheme時,我注意到php.net網站對Davide和Kris所指代碼的后續操作,但根據作者的說法,內存密集程度更低,可能更less的磁盤密集。

我會在這里復制它,因為它可能是有趣的。

來源: http : //www.php.net/manual/en/function.imagecreatefromgif.php#88005

function is_ani($filename) { if(!($fh = @fopen($filename, 'rb'))) return false; $count = 0; //an animated gif contains multiple "frames", with each frame having a //header made up of: // * a static 4-byte sequence (\x00\x21\xF9\x04) // * 4 variable bytes // * a static 2-byte sequence (\x00\x2C) // We read through the file til we reach the end of the file, or we've found // at least 2 frame headers while(!feof($fh) && $count < 2) { $chunk = fread($fh, 1024 * 100); //read 100kb at a time $count += preg_match_all('#\x00\x21\xF9\x04.{4}\x00[\x2C\x21]#s', $chunk, $matches); } fclose($fh); return $count > 1; }

這是工作function:

/** * Thanks to ZeBadger for original example, and Davide Gualano for pointing me to it * Original at http://it.php.net/manual/en/function.imagecreatefromgif.php#59787 **/ function is_animated_gif( $filename ) { $raw = file_get_contents( $filename ); $offset = 0; $frames = 0; while ($frames < 2) { $where1 = strpos($raw, "\x00\x21\xF9\x04", $offset); if ( $where1 === false ) { break; } else { $offset = $where1 + 1; $where2 = strpos( $raw, "\x00\x2C", $offset ); if ( $where2 === false ) { break; } else { if ( $where1 + 8 == $where2 ) { $frames ++; } $offset = $where2 + 1; } } } return $frames > 1; }

如果給定的文件太大,用file_get_contents讀取整個文件可能會花費太多的內存。 我已經重新考慮了以前給出的函數,它只讀取了足夠的字節來檢查幀,并且一find至less2幀就返回。

<?php /** * Detects animated GIF from given file pointer resource or filename. * * @param resource|string $file File pointer resource or filename * @return bool */ function is_animated_gif($file) { $fp = null; if (is_string($file)) { $fp = fopen($file, "rb"); } else { $fp = $file; /* Make sure that we are at the beginning of the file */ fseek($fp, 0); } if (fread($fp, 3) !== "GIF") { fclose($fp); return false; } $frames = 0; while (!feof($fp) && $frames < 2) { if (fread($fp, 1) === "\x00") { /* Some of the animated GIFs do not contain graphic control extension (starts with 21 f9) */ if (fread($fp, 1) === "\x2c" || fread($fp, 2) === "\x21\xf9") { $frames++; } } } fclose($fp); return $frames > 1; }

animationGIF必須具有以下string

"\x21\xFF\x0B\x4E\x45\x54\x53\x43\x41\x50\x45\x32\x2E\x30"

總結

以上是生活随笔為你收集整理的php gd gif动画,我可以检测使用PHP和GD的animationGIF?的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。