애니메이션 gif 와 일반 gif 구분 하기

by 조쉬 posted Jan 16, 2019
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
[애니메이션gif와일반gif구분] 
function AniGifCheck($path){ 
    $str = @file_get_contents($path); 
    $strChk = true; 
    $frameCnt = $idx = 0; 
    $gifFrame = chr(hexdec("0x21")).chr(hexdec("0xF9")).chr(hexdec("0x04")); 
    $gfLenth = strlen($gifFrame); 
    if( strlen($str) <= 0 ){ 
        return 'Not Found'; 
        exit; 
    } 
    while( $strChk == true ){ 
        if( strpos($str, $gifFrame,$idx) ){ 
            $frameCnt++; 
            $idx = strpos($str, $gifFrame,$idx)+$gfLenth; 
            $strChk = true; 
        } else if( $frameCnt >= 3 || !strpos($str, $gifFrame,$idx) ){ 
            break; 
        } 
    } 
    return $frameCnt > 1 ? true : false; 
} 
ani gif인경우는 true 아니면 false를 반환합니다.