当前位置:首页 > PHP教程 > php图像处理 > 列表

php生成gif动画的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-25 11:39:25 浏览: 评论:0 

这篇文章主要介绍了php合成或者创建gif动画,并提供了两个实例,感兴趣的小伙伴们可以参考一下。

首先需要确认GD库是否正常,如果是合成图片,请确保把分解的图片放在frames的文件夹里面。

GIFEncoder.class.php 类

  1. <?   
  2. Class GIFEncoder {  
  3.     var $GIF = "GIF89a";        /* GIF header 6 bytes    */ 
  4.     var $VER = "GIFEncoder V2.06";    /* Encoder version        */ 
  5.    
  6.     var $BUF = Array ( );  
  7.     var $LOP = 0;  
  8.     var $DIS = 2;  
  9.     var $COL = -1;  
  10.     var $IMG = -1;  
  11.    
  12.     var $ERR = Array (  
  13.         'ERR00' =>"Does not supported function for only one image!",  
  14.         'ERR01' =>"Source is not a GIF image!",  
  15.         'ERR02' =>"Unintelligible flag ",  
  16.         'ERR03' =>"Could not make animation from animated GIF source",  
  17.     );  
  18.    
  19.     /*  
  20.     :::::::::::::::::::::::::::::::::::::::::::::::::::  
  21.     ::  
  22.     ::    GIFEncoder...  
  23.     ::  
  24.     */ 
  25.     function GIFEncoder    (  
  26.                             $GIF_src$GIF_dly$GIF_lop$GIF_dis,  
  27.                             $GIF_red$GIF_grn$GIF_blu$GIF_mod 
  28.                         ) {  
  29.         if ( ! is_array ( $GIF_src ) && ! is_array ( $GIF_tim ) ) {  
  30.             printf    ( "%s: %s"$this->VER, $this->ERR [ 'ERR00' ] );  
  31.             exit    ( 0 );  
  32.         }  
  33.         $this->LOP = ( $GIF_lop > -1 ) ? $GIF_lop : 0;  
  34.         $this->DIS = ( $GIF_dis > -1 ) ? ( ( $GIF_dis < 3 ) ? $GIF_dis : 3 ) : 2;  
  35.         $this->COL = ( $GIF_red > -1 && $GIF_grn > -1 && $GIF_blu > -1 ) ?  
  36.                         ( $GIF_red | ( $GIF_grn << 8 ) | ( $GIF_blu << 16 ) ) : -1;  
  37.    
  38.         for ( $i = 0; $i < count ( $GIF_src ); $i++ ) {  
  39.             if ( strToLower ( $GIF_mod ) == "url" ) {  
  40.                 $this->BUF [ ] = fread ( fopen ( $GIF_src [ $i ], "rb" ), filesize ( $GIF_src [ $i ] ) );  
  41.             }  
  42.             else if ( strToLower ( $GIF_mod ) == "bin" ) {  
  43.                 $this->BUF [ ] = $GIF_src [ $i ];  
  44.             }  
  45.             else {  
  46.                 printf    ( "%s: %s ( %s )!"$this->VER, $this->ERR [ 'ERR02' ], $GIF_mod );  
  47.                 exit    ( 0 );  
  48.             }  
  49.             if ( substr ( $this->BUF [ $i ], 0, 6 ) != "GIF87a" && substr ( $this->BUF [ $i ], 0, 6 ) != "GIF89a" ) {  
  50.                 printf    ( "%s: %d %s"$this->VER, $i$this->ERR [ 'ERR01' ] );  
  51.                 exit    ( 0 );  
  52.             }  
  53.             for ( $j = ( 13 + 3 * ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) ) ), $k = TRUE; $k$j++ ) {  
  54.                 switch ( $this->BUF [ $i ] { $j } ) {  
  55.                     case "!":  
  56.                         if ( ( substr ( $this->BUF [ $i ], ( $j + 3 ), 8 ) ) == "NETSCAPE" ) {  
  57.                             printf    ( "%s: %s ( %s source )!"$this->VER, $this->ERR [ 'ERR03' ], ( $i + 1 ) );  
  58.                             exit    ( 0 );  
  59.                         }  
  60.                         break;  
  61.                     case ";":  
  62.                         $k = FALSE;  
  63.                         break;  
  64.                 }  
  65.             }  
  66.         }  
  67.         GIFEncoder::GIFAddHeader ( );  
  68.         for ( $i = 0; $i < count ( $this->BUF ); $i++ ) {  
  69.             GIFEncoder::GIFAddFrames ( $i$GIF_dly [ $i ] );  
  70.         }  
  71.         GIFEncoder::GIFAddFooter ( );  
  72.     }  
  73.     /*  
  74.     :::::::::::::::::::::::::::::::::::::::::::::::::::  
  75.     ::  
  76.     ::    GIFAddHeader...  
  77.     ::  
  78.     */ 
  79.     function GIFAddHeader ( ) {  
  80.         $cmap = 0;  
  81.    
  82.         if ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x80 ) {  
  83.             $cmap = 3 * ( 2 << ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x07 ) );  
  84.    
  85.             $this->GIF .= substr ( $this->BUF [ 0 ], 6, 7        );  
  86.             $this->GIF .= substr ( $this->BUF [ 0 ], 13, $cmap    );  
  87.             $this->GIF .= "!\377\13NETSCAPE2.0\3\1" . GIFEncoder::GIFWord ( $this->LOP ) . "\0";  
  88.         }  
  89.     }  
  90.     /*  
  91.     :::::::::::::::::::::::::::::::::::::::::::::::::::  
  92.     ::  
  93.     ::    GIFAddFrames...  
  94.     ::  
  95.     */ 
  96.     function GIFAddFrames ( $i$d ) {  
  97.    
  98.         $Locals_str = 13 + 3 * ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) );  
  99.    
  100.         $Locals_end = strlen ( $this->BUF [ $i ] ) - $Locals_str - 1;  
  101.         $Locals_tmp = substr ( $this->BUF [ $i ], $Locals_str$Locals_end );  
  102.    
  103.         $Global_len = 2 << ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x07 );  
  104.         $Locals_len = 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 );  
  105.    
  106.         $Global_rgb = substr ( $this->BUF [ 0 ], 13,  
  107.                             3 * ( 2 << ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x07 ) ) );  
  108.         $Locals_rgb = substr ( $this->BUF [ $i ], 13,  
  109.                             3 * ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) ) );  
  110.    
  111.         $Locals_ext = "!\xF9\x04" . chr ( ( $this->DIS << 2 ) + 0 ) .  
  112.                         chr ( ( $d >> 0 ) & 0xFF ) . chr ( ( $d >> 8 ) & 0xFF ) . "\x0\x0";  
  113.    
  114.         if ( $this->COL > -1 && ord ( $this->BUF [ $i ] { 10 } ) & 0x80 ) {  
  115.             for ( $j = 0; $j < ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) ); $j++ ) {  
  116.                 if    (  
  117.                         ord ( $Locals_rgb { 3 * $j + 0 } ) == ( $this->COL >> 0 ) & 0xFF &&  
  118.                         ord ( $Locals_rgb { 3 * $j + 1 } ) == ( $this->COL >> 8 ) & 0xFF &&  
  119.                         ord ( $Locals_rgb { 3 * $j + 2 } ) == ( $this->COL >> 16 ) & 0xFF  
  120.                     ) {  
  121.                     $Locals_ext = "!\xF9\x04" . chr ( ( $this->DIS << 2 ) + 1 ) .  
  122.                                     chr ( ( $d >> 0 ) & 0xFF ) . chr ( ( $d >> 8 ) & 0xFF ) . chr ( $j ) . "\x0";  
  123.                     break;  
  124.                 }  
  125.             }  
  126.         }  
  127.         switch ( $Locals_tmp { 0 } ) {  
  128.             case "!":  
  129.                 $Locals_img = substr ( $Locals_tmp, 8, 10 );  
  130.                 $Locals_tmp = substr ( $Locals_tmp, 18, strlen ( $Locals_tmp ) - 18 );  
  131.                 break;  
  132.             case ",":  
  133.                 $Locals_img = substr ( $Locals_tmp, 0, 10 );  
  134.                 $Locals_tmp = substr ( $Locals_tmp, 10, strlen ( $Locals_tmp ) - 10 );  
  135.                 break;  
  136.         }  
  137.         if ( ord ( $this->BUF [ $i ] { 10 } ) & 0x80 && $this->IMG > -1 ) {  
  138.             if ( $Global_len == $Locals_len ) {  
  139.                 if ( GIFEncoder::GIFBlockCompare ( $Global_rgb$Locals_rgb$Global_len ) ) {  
  140.                     $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_tmp );  
  141.                 }  
  142.                 else {  
  143.                     $byte = ord ( $Locals_img { 9 } );  
  144.                     $byte |= 0x80;  
  145.                     $byte &= 0xF8;  
  146.                     $byte |= ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x07 );  
  147.                     $Locals_img { 9 } = chr ( $byte );  
  148.                     $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_rgb . $Locals_tmp );  
  149.                 }  
  150.             }  
  151.             else {  
  152.                 $byte = ord ( $Locals_img { 9 } );  
  153.                 $byte |= 0x80;  
  154.                 $byte &= 0xF8;  
  155.                 $byte |= ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 );  
  156.                 $Locals_img { 9 } = chr ( $byte );  
  157.                 $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_rgb . $Locals_tmp );  
  158.             }  
  159.         }  
  160.         else {  
  161.             $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_tmp );  
  162.         }  
  163.         $this->IMG = 1;  
  164.     }  
  165.     /*  
  166.     :::::::::::::::::::::::::::::::::::::::::::::::::::  
  167.     ::  
  168.     ::    GIFAddFooter...  
  169.     ::  
  170.     */ 
  171.     function GIFAddFooter ( ) {  
  172.         $this->GIF .= ";";  
  173.     }  
  174.     /*  
  175.     :::::::::::::::::::::::::::::::::::::::::::::::::::  
  176.     ::  
  177.     ::    GIFBlockCompare...  
  178.     ::  
  179.     */ 
  180.     function GIFBlockCompare ( $GlobalBlock$LocalBlock$Len ) {  
  181.    
  182.         for ( $i = 0; $i < $Len$i++ ) {  
  183.             if    (  
  184.                     $GlobalBlock { 3 * $i + 0 } != $LocalBlock { 3 * $i + 0 } ||  
  185.                     $GlobalBlock { 3 * $i + 1 } != $LocalBlock { 3 * $i + 1 } ||  
  186.                     $GlobalBlock { 3 * $i + 2 } != $LocalBlock { 3 * $i + 2 }  
  187.                 ) {  
  188.                     return ( 0 );  
  189.             }  
  190.         }  
  191.    
  192.         return ( 1 );  
  193.     }  
  194.     /*  
  195.     :::::::::::::::::::::::::::::::::::::::::::::::::::  
  196.     ::  
  197.     ::    GIFWord...  
  198.     ::  
  199.     */ 
  200.     function GIFWord ( $int ) {  
  201.    
  202.         return ( chr ( $int & 0xFF ) . chr ( ( $int >> 8 ) & 0xFF ) );  
  203.     }  
  204.     /*  
  205.     :::::::::::::::::::::::::::::::::::::::::::::::::::  
  206.     ::  
  207.     ::    GetAnimation...  
  208.     ::  
  209.     */ 
  210.     function GetAnimation ( ) {  
  211.         return ( $this->GIF );  
  212.     }  
  213. }  
  214.    
  215. ?> 

为大家分享两个实例供大家参考:

实例 1 合成gif动画:

  1. <?php  
  2. include "GIFEncoder.class.php";  
  3. /*  
  4.   Build a frames array from sources...  
  5. */ 
  6. if ( $dh = opendir ( "frames/" ) ) {  
  7.   while ( false !== ( $dat = readdir ( $dh ) ) ) {  
  8.     if ( $dat != "." && $dat != ".." ) {  
  9.       $frames [ ] = "frames/$dat";  
  10.       $framed [ ] = 5;  
  11.     }  
  12.   }  
  13.   closedir ( $dh );  
  14. }  
  15. /*  
  16.     GIFEncoder constructor:  
  17.     =======================  
  18.    
  19.     image_stream = new GIFEncoder  (  
  20.               URL or Binary data 'Sources'  
  21.               int         'Delay times'  
  22.               int         'Animation loops'  
  23.               int         'Disposal'  
  24.               int         'Transparent red, green, blue colors'  
  25.               int         'Source type'  
  26.             );  
  27. */ 
  28. $gif = new GIFEncoder  (  
  29.       $frames,  
  30.       $framed,  
  31.       0,  
  32.       2,  
  33.       0, 0, 0,  
  34.       "url" 
  35.     );  
  36. /*  
  37.     Possibles outputs:  
  38.     ==================  
  39.    
  40.     Output as GIF for browsers :  
  41.       - Header ( 'Content-type:image/gif' );  
  42.     Output as GIF for browsers with filename:  
  43.       - Header ( 'Content-disposition:Attachment;filename=myanimation.gif');  
  44.     Output as file to store into a specified file:  
  45.       - FWrite ( FOpen ( "myanimation.gif", "wb" ), $gif->GetAnimation ( ) );  
  46. */ 
  47. Header ( 'Content-type:image/gif' );  
  48. echo  $gif->GetAnimation ( );  
  49. ?> 

实例 2 创建gif动画:

  1. <?php  
  2. include "GIFEncoder.class.php";  
  3.    
  4. ob_start();  
  5. $board_width = 60;  
  6. $board_height = 60;  
  7. $pad_width = 5;  
  8. $pad_height = 15;  
  9. $ball_size = 5;  
  10. $game_width = $board_width - $pad_width*2 - $ball_size;  
  11. $game_height = $board_height-$ball_size;  
  12.    
  13. $x = 0;  
  14. $y = rand(0,$game_height);  
  15. $xv = rand(1,10);  
  16. $yv = rand(1,10);  
  17. $pt[] = array($x,$y);  
  18. do{  
  19.     $x += $xv;  
  20.     $y += $yv;  
  21.     if($x > $game_width){  
  22.         $xv = -1*$xv;  
  23.         $x = $game_width - ($x-$game_width);  
  24.     }elseif($x < 0){  
  25.         $xv = -1*$xv;  
  26.         $x = abs($x);  
  27.     }  
  28.     if($y>$game_height){  
  29.         $yv = -1*$yv;  
  30.         $y = $game_height - ($y - $game_height);  
  31.     }elseif($y<0){  
  32.         $yv = -1*$yv;  
  33.         $y = abs($y);  
  34.     }  
  35.     $pt[] = array($x,$y);  
  36. }while($x!=$pt[0][0]||$y!=$pt[0][1]);  
  37.    
  38. $i = 0;  
  39. while(isset($pt[$i])){  
  40.     $image = imagecreate($board_width,$board_height);  
  41.     imagecolorallocate($image, 0,0,0);  
  42.     $color = imagecolorallocate($image, 255,255,255);  
  43.     $color2 = imagecolorallocate($image, 255,0,0);  
  44.        
  45.     if($pt[$i][1] + $pad_height < $board_width){  
  46.         imagefilledrectangle($image,0,$pt[$i][1],$pad_width$pt[$i][1]+$pad_height,$color);  
  47.     }else{  
  48.         imagefilledrectangle($image,0,$board_width-$pad_height,$pad_width$board_width,$color);  
  49.     }  
  50.     imagefilledrectangle($image,$board_width-$pad_width,0,$board_width$board_height,$color2);  
  51.     imagefilledrectangle($image,$pad_width+$pt[$i][0], $ball_size+$pt[$i][1]-$ball_size$pad_width+$pt[$i][0]+$ball_size$ball_size+$pt[$i][1],$color);  
  52.     //imagesetpixel($image,$pt[$i][0],$pt[$i][1],$color);  
  53.     imagegif($image);  
  54.     imagedestroy($image);  
  55.     $imagedata[] = ob_get_contents();  
  56.     ob_clean();  
  57.     ++$i;  
  58. }  
  59.    
  60. $gif = new GIFEncoder(  
  61.               $imagedata,  
  62.               100,  
  63.               0,  
  64.               2,  
  65.               0, 0, 1,  
  66.               "bin" 
  67.     );  
  68.        
  69. Header ('Content-type:image/gif');  
  70. echo $gif->GetAnimation();  
  71. ?> 

以上就是教大家如何利用php合成或是创建gif动画,希望大家仔细研究分享的两个实例,有所收获。

Tags: php生成gif动画

分享到: