摘要: using System;using System.IO; namespace Gif.Components{ public class LZWEncoder { private static readonly int EOF = -1; private int imgW, imgH; private byte[] pixAry; private int initCodeSize; ... 阅读全文
posted @ 2006-10-17 17:58 Robin Zhang 阅读(10379) 评论(12) 推荐(1) 编辑
摘要: 从gif动画图像中导出桢的方法实现 阅读全文
posted @ 2006-10-17 01:51 Robin Zhang 阅读(3152) 评论(9) 推荐(0) 编辑