YesYo.com MintState Forums
뒤로    YesYo.com MintState BBS > Tech > PHP
검색
멤버이름    오토
비밀번호 
 

파일이 GIF애니메이션인지 확인

페이지 정보

작성자 MintState 댓글 0건 조회 6,222회 작성일 18-04-05 15:03

본문

파일이 GIF애니메이션인지 확인

출처 :  http://php.net/manual/en/function.imagecreatefromgif.php#104473

function is_gif_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) (some variants may use \x00\x21 ?)
	
	// 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;
}

댓글목록

등록된 댓글이 없습니다.

Total 165건 1 페이지
PHP 목록
번호 제목 글쓴이 조회 날짜
165 MintState 5370 05-17
164 MintState 6074 05-11
열람중 MintState 6223 04-05
162 MintState 6366 04-03
161 MintState 8197 01-18
160 MintState 6971 08-08
159 MintState 10247 07-31
158 MintState 7933 05-29
157 MintState 6998 02-22
156 MintState 8366 02-21
155 MintState 12254 11-12
154 MintState 9269 12-08
153 MintState 13190 02-26
152 MintState 17470 01-22
151 MintState 11723 07-27
150 MintState 13917 02-10
149 MintState 13315 10-21
148 MintState 17396 05-02
147 MintState 22075 04-18
146 MintState 14898 04-17
145 MintState 15330 04-17
144 MintState 14548 03-14
143 MintState 16229 03-04
142 MintState 16935 01-18
141 MintState 20139 07-02
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2024, YesYo.com MintState. ™