`
天梯梦
  • 浏览: 13747589 次
  • 性别: Icon_minigender_2
  • 来自: 洛杉矶
社区版块
存档分类
最新评论

php合成或者创建gif动画

 
阅读更多

1. 首先需要确认GD库是否正常。

2. 如何是合成图片,请确保把分解的图片放在frames的文件夹里面。

3. GIFEncoder.class.php 类

 

<?

Class GIFEncoder {
        var $GIF = "GIF89a";                /* GIF header 6 bytes        */
        var $VER = "GIFEncoder V2.06";        /* Encoder version                */

        var $BUF = Array ( );
        var $LOP =  0;
        var $DIS =  2;
        var $COL = -1;
        var $IMG = -1;

        var $ERR = Array (
                'ERR00' =>"Does not supported function for only one image!",
                'ERR01' =>"Source is not a GIF image!",
                'ERR02' =>"Unintelligible flag ",
                'ERR03' =>"Could not make animation from animated GIF source",
        );

        /*
        :::::::::::::::::::::::::::::::::::::::::::::::::::
        ::
        ::        GIFEncoder...
        ::
        */
        function GIFEncoder        (
                                                        $GIF_src, $GIF_dly, $GIF_lop, $GIF_dis,
                                                        $GIF_red, $GIF_grn, $GIF_blu, $GIF_mod
                                                ) {
                if ( ! is_array ( $GIF_src ) && ! is_array ( $GIF_tim ) ) {
                        printf        ( "%s: %s", $this->VER, $this->ERR [ 'ERR00' ] );
                        exit        ( 0 );
                }
                $this->LOP = ( $GIF_lop > -1 ) ? $GIF_lop : 0;
                $this->DIS = ( $GIF_dis > -1 ) ? ( ( $GIF_dis < 3 ) ? $GIF_dis : 3 ) : 2;
                $this->COL = ( $GIF_red > -1 && $GIF_grn > -1 && $GIF_blu > -1 ) ?
                                                ( $GIF_red | ( $GIF_grn << 8 ) | ( $GIF_blu << 16 ) ) : -1;

                for ( $i = 0; $i < count ( $GIF_src ); $i++ ) {
                        if ( strToLower ( $GIF_mod ) == "url" ) {
                                $this->BUF [ ] = fread ( fopen ( $GIF_src [ $i ], "rb" ), filesize ( $GIF_src [ $i ] ) );
                        }
                        else if ( strToLower ( $GIF_mod ) == "bin" ) {
                                $this->BUF [ ] = $GIF_src [ $i ];
                        }
                        else {
                                printf        ( "%s: %s ( %s )!", $this->VER, $this->ERR [ 'ERR02' ], $GIF_mod );
                                exit        ( 0 );
                        }
                        if ( substr ( $this->BUF [ $i ], 0, 6 ) != "GIF87a" && substr ( $this->BUF [ $i ], 0, 6 ) != "GIF89a" ) {
                                printf        ( "%s: %d %s", $this->VER, $i, $this->ERR [ 'ERR01' ] );
                                exit        ( 0 );
                        }
                        for ( $j = ( 13 + 3 * ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) ) ), $k = TRUE; $k; $j++ ) {
                                switch ( $this->BUF [ $i ] { $j } ) {
                                        case "!":
                                                if ( ( substr ( $this->BUF [ $i ], ( $j + 3 ), 8 ) ) == "NETSCAPE" ) {
                                                        printf        ( "%s: %s ( %s source )!", $this->VER, $this->ERR [ 'ERR03' ], ( $i + 1 ) );
                                                        exit        ( 0 );
                                                }
                                                break;
                                        case ";":
                                                $k = FALSE;
                                                break;
                                }
                        }
                }
                GIFEncoder::GIFAddHeader ( );
                for ( $i = 0; $i < count ( $this->BUF ); $i++ ) {
                        GIFEncoder::GIFAddFrames ( $i, $GIF_dly [ $i ] );
                }
                GIFEncoder::GIFAddFooter ( );
        }
        /*
        :::::::::::::::::::::::::::::::::::::::::::::::::::
        ::
        ::        GIFAddHeader...
        ::
        */
        function GIFAddHeader ( ) {
                $cmap = 0;

                if ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x80 ) {
                        $cmap = 3 * ( 2 << ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x07 ) );

                        $this->GIF .= substr ( $this->BUF [ 0 ], 6, 7                );
                        $this->GIF .= substr ( $this->BUF [ 0 ], 13, $cmap        );
                        $this->GIF .= "!\377\13NETSCAPE2.0\3\1" . GIFEncoder::GIFWord ( $this->LOP ) . "\0";
                }
        }
        /*
        :::::::::::::::::::::::::::::::::::::::::::::::::::
        ::
        ::        GIFAddFrames...
        ::
        */
        function GIFAddFrames ( $i, $d ) {

                $Locals_str = 13 + 3 * ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) );

                $Locals_end = strlen ( $this->BUF [ $i ] ) - $Locals_str - 1;
                $Locals_tmp = substr ( $this->BUF [ $i ], $Locals_str, $Locals_end );

                $Global_len = 2 << ( ord ( $this->BUF [ 0  ] { 10 } ) & 0x07 );
                $Locals_len = 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 );

                $Global_rgb = substr ( $this->BUF [ 0  ], 13,
                                                        3 * ( 2 << ( ord ( $this->BUF [ 0  ] { 10 } ) & 0x07 ) ) );
                $Locals_rgb = substr ( $this->BUF [ $i ], 13,
                                                        3 * ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) ) );

                $Locals_ext = "!\xF9\x04" . chr ( ( $this->DIS << 2 ) + 0 ) .
                                                chr ( ( $d >> 0 ) & 0xFF ) . chr ( ( $d >> 8 ) & 0xFF ) . "\x0\x0";

                if ( $this->COL > -1 && ord ( $this->BUF [ $i ] { 10 } ) & 0x80 ) {
                        for ( $j = 0; $j < ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) ); $j++ ) {
                                if        (
                                                ord ( $Locals_rgb { 3 * $j + 0 } ) == ( $this->COL >>  0 ) & 0xFF &&
                                                ord ( $Locals_rgb { 3 * $j + 1 } ) == ( $this->COL >>  8 ) & 0xFF &&
                                                ord ( $Locals_rgb { 3 * $j + 2 } ) == ( $this->COL >> 16 ) & 0xFF
                                        ) {
                                        $Locals_ext = "!\xF9\x04" . chr ( ( $this->DIS << 2 ) + 1 ) .
                                                                        chr ( ( $d >> 0 ) & 0xFF ) . chr ( ( $d >> 8 ) & 0xFF ) . chr ( $j ) . "\x0";
                                        break;
                                }
                        }
                }
                switch ( $Locals_tmp { 0 } ) {
                        case "!":
                                $Locals_img = substr ( $Locals_tmp, 8, 10 );
                                $Locals_tmp = substr ( $Locals_tmp, 18, strlen ( $Locals_tmp ) - 18 );
                                break;
                        case ",":
                                $Locals_img = substr ( $Locals_tmp, 0, 10 );
                                $Locals_tmp = substr ( $Locals_tmp, 10, strlen ( $Locals_tmp ) - 10 );
                                break;
                }
                if ( ord ( $this->BUF [ $i ] { 10 } ) & 0x80 && $this->IMG > -1 ) {
                        if ( $Global_len == $Locals_len ) {
                                if ( GIFEncoder::GIFBlockCompare ( $Global_rgb, $Locals_rgb, $Global_len ) ) {
                                        $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_tmp );
                                }
                                else {
                                        $byte  = ord ( $Locals_img { 9 } );
                                        $byte |= 0x80;
                                        $byte &= 0xF8;
                                        $byte |= ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x07 );
                                        $Locals_img { 9 } = chr ( $byte );
                                        $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_rgb . $Locals_tmp );
                                }
                        }
                        else {
                                $byte  = ord ( $Locals_img { 9 } );
                                $byte |= 0x80;
                                $byte &= 0xF8;
                                $byte |= ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 );
                                $Locals_img { 9 } = chr ( $byte );
                                $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_rgb . $Locals_tmp );
                        }
                }
                else {
                        $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_tmp );
                }
                $this->IMG  = 1;
        }
        /*
        :::::::::::::::::::::::::::::::::::::::::::::::::::
        ::
        ::        GIFAddFooter...
        ::
        */
        function GIFAddFooter ( ) {
                $this->GIF .= ";";
        }
        /*
        :::::::::::::::::::::::::::::::::::::::::::::::::::
        ::
        ::        GIFBlockCompare...
        ::
        */
        function GIFBlockCompare ( $GlobalBlock, $LocalBlock, $Len ) {

                for ( $i = 0; $i < $Len; $i++ ) {
                        if        (
                                        $GlobalBlock { 3 * $i + 0 } != $LocalBlock { 3 * $i + 0 } ||
                                        $GlobalBlock { 3 * $i + 1 } != $LocalBlock { 3 * $i + 1 } ||
                                        $GlobalBlock { 3 * $i + 2 } != $LocalBlock { 3 * $i + 2 }
                                ) {
                                        return ( 0 );
                        }
                }

                return ( 1 );
        }
        /*
        :::::::::::::::::::::::::::::::::::::::::::::::::::
        ::
        ::        GIFWord...
        ::
        */
        function GIFWord ( $int ) {

                return ( chr ( $int & 0xFF ) . chr ( ( $int >> 8 ) & 0xFF ) );
        }
        /*
        :::::::::::::::::::::::::::::::::::::::::::::::::::
        ::
        ::        GetAnimation...
        ::
        */
        function GetAnimation ( ) {
                return ( $this->GIF );
        }
}

?>

 

4. 实例 1 合成gif动画:

<?php
include "GIFEncoder.class.php";
/*
	Build a frames array from sources...
*/
if ( $dh = opendir ( "frames/" ) ) {
	while ( false !== ( $dat = readdir ( $dh ) ) ) {
		if ( $dat != "." && $dat != ".." ) {
			$frames [ ] = "frames/$dat";
			$framed [ ] = 5;
		}
	}
	closedir ( $dh );
}
/*
		GIFEncoder constructor:
        =======================

		image_stream = new GIFEncoder	(
							URL or Binary data	'Sources'
							int					'Delay times'
							int					'Animation loops'
							int					'Disposal'
							int					'Transparent red, green, blue colors'
							int					'Source type'
						);
*/
$gif = new GIFEncoder	(
			$frames,
			$framed,
			0,
			2,
			0, 0, 0,
			"url"
		);
/*
		Possibles outputs:
		==================

        Output as GIF for browsers :
        	- Header ( 'Content-type:image/gif' );
        Output as GIF for browsers with filename:
        	- Header ( 'Content-disposition:Attachment;filename=myanimation.gif');
        Output as file to store into a specified file:
        	- FWrite ( FOpen ( "myanimation.gif", "wb" ), $gif->GetAnimation ( ) );
*/
Header ( 'Content-type:image/gif' );
echo	$gif->GetAnimation ( );
?>

 

5. 实例 2 创建gif动画:

<?php
include "GIFEncoder.class.php";

ob_start();
$board_width = 60;
$board_height = 60;
$pad_width = 5;
$pad_height = 15;
$ball_size = 5;
$game_width = $board_width - $pad_width*2 - $ball_size;
$game_height = $board_height-$ball_size;

$x = 0;
$y = rand(0,$game_height);
$xv = rand(1,10);
$yv = rand(1,10);
$pt[] = array($x,$y);
do{
        $x += $xv;
        $y += $yv;
        if($x > $game_width){
                $xv = -1*$xv;
                $x = $game_width - ($x-$game_width);
        }elseif($x < 0){
                $xv = -1*$xv;
                $x = abs($x);
        }
        if($y>$game_height){
                $yv = -1*$yv;
                $y = $game_height - ($y - $game_height);
        }elseif($y<0){
                $yv = -1*$yv;
                $y = abs($y);
        }
        $pt[] = array($x,$y);
}while($x!=$pt[0][0]||$y!=$pt[0][1]);

$i = 0;
while(isset($pt[$i])){
        $image = imagecreate($board_width,$board_height);
        imagecolorallocate($image, 0,0,0);
        $color = imagecolorallocate($image, 255,255,255);
        $color2 = imagecolorallocate($image, 255,0,0);
        
        if($pt[$i][1] + $pad_height < $board_width){
                imagefilledrectangle($image,0,$pt[$i][1],$pad_width, $pt[$i][1]+$pad_height,$color);
        }else{
                imagefilledrectangle($image,0,$board_width-$pad_height,$pad_width, $board_width,$color);
        }
        imagefilledrectangle($image,$board_width-$pad_width,0,$board_width, $board_height,$color2);
        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);
        //imagesetpixel($image,$pt[$i][0],$pt[$i][1],$color);
        imagegif($image);
        imagedestroy($image);
        $imagedata[] = ob_get_contents();
        ob_clean();
        ++$i;
}

$gif = new GIFEncoder(
                            $imagedata,
                            100,
                            0,
                            2,
                            0, 0, 1,
                            "bin"
        );
        
Header ('Content-type:image/gif');
echo $gif->GetAnimation();
?>

 

6. 全部内容见附件。

 

分享到:
评论
1 楼 duanyong 2015-02-11  
不错,不过,我这儿还是有点问题,合成出来的图有黑边的。

相关推荐

    php生成gif动画的方法

    在提供的代码片段中,可以看到一个名为`GIFEncoder.class.php`的类,这个类专门用于创建GIF动画。类中定义了几个变量,如GIF头部信息、版本号、缓冲区、循环次数、延迟时间和颜色信息等。 `GIFEncoder`类中的`...

    PHP基于php_imagick_st-Q8.dll实现JPG合成GIF图片的方法

    在上述代码中,首先定义了一个包含JPG图片文件名的数组`$filelist`,这些图片将被合成为一个GIF动画。`$type`变量用于指定生成的图片类型,这里为'gif'。`$num`用于指定每帧图片之间的延迟时间(单位为毫秒)。`$...

    php_imagick.dll For PHP 5.2

    php_imagick扩展还提供了许多高级功能,如颜色空间转换、图像滤波、添加文本水印、读取和写入多帧图像(如GIF动画)等。这些功能使得开发者能够灵活地处理图像,满足各种复杂的业务需求。 总结起来,...

    php_imagick,支持php5.2以上版本

    8. **动画处理**:对于GIF动画,Imagick可以方便地进行编辑和创建。 **三、性能比较** 相比于PHP内置的GD库,Imagick在功能和性能上都有明显优势。GD库虽然轻量且易于使用,但处理复杂图像和大量操作时可能效率较...

    php_imagick_st-Q16.dll

    4. **动画处理**:Imagick还可以处理GIF动画,通过`readImages()` 加载多帧,然后用`animateImages()` 播放。 总的来说,PHP Imagick扩展提供了强大的图像处理能力,无论是基本的尺寸调整、水印添加,还是复杂的...

    Sorry.NET PHP在线生成王境泽表情

    3. **动态GIF生成**:GIF是一种支持动画的图像格式,需要了解如何通过PHP动态生成GIF,包括帧序列的创建和延迟时间的设置。 4. **前端交互**:前端部分可能使用HTML、CSS和JavaScript来构建用户界面,用户可以通过...

    grafika-master图像处理库

    对于动画处理,Grafika也提供了`createAnimation()`函数,可以用来创建和编辑GIF动画。 图像处理的一些关键知识点包括: 1. **颜色空间**:理解RGB(红绿蓝)和CMYK(青洋红黑)等颜色模型,以及它们在图像处理中...

    imagick-3.1.2

    8. **动画处理**:对于GIF等动画格式,可以进行帧操作和动画编辑。 9. **元数据处理**:读取和修改图像的EXIF、IPTC等元数据信息。 在下载的压缩包中,有两个文件: 1. **package.xml**:这是一个配置文件,通常...

    centos安装imagemagick

    ImageMagick是一套功能强大的软件工具集,用于创建、编辑或合成位图图像。它能够读取、转换并写入多种格式(超过200种)的图像,包括PNG、JPEG、GIF、TIFF、PDF等。ImageMagick支持多种平台,包括Windows、macOS、...

    利用php_imagick实现复古效果的方法

    这段代码将读取名为`example.gif`的GIF动画,将所有帧缩小至50x50像素,并保存为新的GIF文件`example_small.gif`。 **利用php_imagick实现复古效果:** 要实现复古效果,我们可以模拟Photoshop中的操作。以下代码...

    GraphicsMagick-1.3.20

    10. **动画处理**:对于GIF动画,GraphicsMagick可以创建、编辑或合并动画帧。 11. **元数据处理**:可以读取、修改或删除图像的元数据,如EXIF信息。 在安装GraphicsMagick-1.3.20版本时,通常可以通过Linux的包...

    The Definitive Guide to ImageMagick

    此外,它还支持制作GIF动画,用户可以通过组合多张静态图像来创建简单的动画序列。 #### 跨平台兼容性 ImageMagick是一款跨平台的软件,可在Windows、Linux、macOS等多种操作系统上运行,这使其成为全球范围内广泛...

    ImageMagick图像处理工具

    `convert -delay 50 -loop 0 *.jpg animation.gif`可以将一系列JPG图片合并成一个循环播放的GIF动画。 7. **批处理处理**:ImageMagick的强大之处还在于可以批量处理大量图像,只需一次命令即可完成对整个目录下...

    GD-2.44.tar.gz

    它提供了大量的函数来处理图像,包括创建、绘制线条、形状、文本、图像合成、颜色处理等。GD库支持多种图像格式,如JPEG、PNG、GD2、GIF(非动画)以及位图和WBMP等。此外,GD库还能够处理真彩色图像,并支持GD2的...

    ImageMagick-6.8.7-6.tar.gz

    6. 动画处理:对GIF动画进行编辑和创建,如合并、分割、调整帧速率等。 7. 图像分析:可以提取图像的元数据,进行颜色直方图分析,甚至识别简单的形状和文字。 安装ImageMagick在Linux上通常涉及以下步骤: 1. 解压...

    ImageMagick-6.9.11-16.tar.gz ImageMagick图像软件下载

    3. 动画处理:不仅支持静态图像,还能处理GIF和其他形式的动画,进行动画的创建和编辑。 4. 图像分析:可以测量图像属性,如颜色分布、尺寸、几何形状等,对图像进行深度分析。 5. 文本操作:在图像上添加文字,...

    图片处理工具-全部源码开放

    9. **动画处理**:处理GIF动画,如拆分、合并帧等。 10. **命令行工具**:通过命令行接口(CLI)执行各种图像操作,方便脚本编程和批量处理。 ImageMagick的源码开放意味着开发者可以深入研究其算法和实现细节,...

    ImageMagick.tar.gz

    6. **动画处理**:可以创建、编辑和显示GIF或其他动画格式的图像。 7. **文字和水印**:可以在图像上添加文字注释,也可以创建透明或不透明的水印。 8. **几何变换**:包括旋转、翻转、缩放、裁剪等。 9. **像素...

Global site tag (gtag.js) - Google Analytics