我的代码在这: php读取多帧GIF图片(分解、合成)
http://hi.baidu.com/lael80/blog/item/bd97aab7931637fc31add1b6.html

解决方案 »

  1.   

    imagecreatefromstring -- 从字符串中的图像流新建一图像$bin = file_get_contents("c:\\1.gif"); 
    $im = imagecreatefromstring($bin);
      

  2.   

    gd目前还不能处理多帧的gif吧.
      

  3.   

    我是自己写类分析流的,源代码是VB的翻译来的
    加上这个 网上的GIFEncoder.class.php类,就可以实现GIF分解、合成操作了我的代码在这: php读取多帧GIF图片(分解、合成) 
    http://hi.baidu.com/lael80/blog/item/bd97aab7931637fc31add1b6.html