搜索资源列表
GIF文件解码器类原代码gif89a
- GIF文件解码器类原代码gif89a GIF文件解码器类使用说明 本解码器类支持GIF文件格式的89a版本,可支持动画GIF文件! 本原代码未经严格测试,欢迎广大朋友批评指正。 1.使用授权 本原代码文档包括下列文件: gif89a.cpp 解码器类原程序 gif89a.h 解码器类头文件 gif89a.doc GIF文件格式说明 lzw.doc GIF文件所用压缩算法的说明 readme.
lzw源码
- lzw源码,比较好压缩解压算法源码网页的字体、大小、颜色及页面布局的语言,使用任何的文本编辑器都可以 对它进行编辑,与VB、C++等编程...最多可包含 256 种颜色(包括透明色)。文 件的大小取决于实际使用的颜色数目。它使用 LZW 压缩算法来... (2005-6-7,VB,61KB,下载0次)【向站长-4,558,302 source, the better compression decompression algorithm source web font, size, color
LZW_Demo
- WINDOWS 界面,LZW压缩算法和RLE压缩算法的实现源码及Demo。-Windows interface, LZW compression algorithm and RLE compression algorithm to achieve the source and Demo.
compc++
- 这个代码包中包含了一些比较通用的无损压缩算法的源代码,如果你想深入理解一些图像格式,那么读懂这些代码会对你有很大帮助,这是基础。(包中包括的算法有:lzari、lzhuf、lzss、lzw、lz77、huffman、rle8、rle16)。工具:通用C 。-this code contains some of the more common lossless compression algorithm source code, if you want to understand in depth
Hooker2.5
- 一个记录键盘的完整程序,采用dll注入方式hook API,有完整的dll代码和注入程序的代码,及lzw压缩算法的完整代码。-a record keyboard integrity procedures used dll injected hook API, a complete dll injection procedure code and the code, and the compression algorithm 4,558,302 integrity code.
gifmageexdemo
- GIF(Graphics Interchange Format,图形交换格式)文件是由 CompuServe公司开发的图形文件格式,版权所有,任何商业目的使用均须 CompuServe公司授权。 GIF图象是基于颜色列表的(存储的数据是该点的颜色对应于颜色列表的索引值),最多只支持8位(256色)。GIF文件内部分成许多存储块, 用来存储多幅图象或者是决定图象表现行为的控制块, 用以实现动画和交互式应用。GIF文件还通过LZW压缩算法压缩图象数据来减少图象尺寸
(利用GIF_LZW算法实现的)网络图片传输
- (利用GIF_LZW算法实现的)网络图片传输 技术特点 ~~~~~~~~ 一、使用TCP协议传输数据。理由:稳定性好。 二、使用字节数据流进行传输,理由: A:VB的String存在自动Unicode转换问题,影响速度; B:可以直接发送8位字节数据,不需要使用Base64编码,从而减少了编码时间。 三、使用GIF-LZW压缩算法压缩图像。理由: A:行程编码、Huffman压缩算法压缩率太低; B:JPEG压缩算法需要太多位运算,且运算量大(有专门MMX优化算法),不利于VB实现; C:GIF
含有zip、lzw、gzip等多种压缩算法的程序
- 含有zip、lzw、gzip等多种压缩算法的程序
LZWCompression
- LZW 压缩算法的C语言实现,可以实现对字符串的字典压缩编码。初级程序-LZW compression algorithm of the C language can be achieved on the string dictionary coding. Primary process
chengxudaidm
- 《Windows程序设计》配套代码、LZW压缩算法源代码、Socket异步通信示程序代码-" Windows Programming" complementary code, LZW compression algorithm the source code, Socket asynchronous communication code that
Soft20060207113911202
- LZW算法,不同压缩算法的性能比较,源码-compression
lzw
- 实现图像压缩编码中的重要lzw算法,很好很强大的lzw的算法-lzw
lzw
- lzw_压缩算法的_编码_和译码_的实现程序.rar-lzw_ coding compression algorithm _ _ _ and the realization of decoding process. rar
LLZWWalgorithZ
- LZW压缩算法简介作者:宋成描述:一篇关于LZW压缩算法简介的文章,通俗易懂,值的一看!备注::该文章整理自软件源码报1998年合订本上册。 LZW压缩算法是一种新颖的压缩方法,由Lemple -The LZW compression algorithm About author: Song: one on the LZW compression algorithm profile article easy to understand, the value of a look! Remark
CCCcodeo
- 其中包含将256色彩色图象转化为灰度图象,LZW压缩算法,显示出来DDIB位图,哈夫曼编码及实现图象的马赛克效果的C++源码 可直接使用。 -Which contains 256 color color image into a grayscale image, LZW compression algorithm, displayed DDIB bit map, Huffman coding and image mosaic C++ source code can be used direc
LZW
- lzw 压缩算法 写的比较简单 提供大家学习一下-lzw compression algorithm provides them to learn about
matlab
- 基于B-LZW算法的数据无损压缩 B-LZW压缩算法 LZW的结构设计-Lossless compression B-LZW algorithm-based data structure design of the B-LZW compression algorithm LZW
lzw
- LZW压缩算法,基于字典的编码. 逻辑简单,硬件实现价廉,运算速度快.-LZW compression algorithm, dictionary-based encoding logic is simple, inexpensive hardware, computing speed.
lzw
- 使用VC++6.0实现lzw的压缩算法,MFC实现,界面错操作。-Use VC++6.0 achieve lzw compression algorithm, MFC implementation, interface wrong operation.
GifCodec
- 参考网上的资料写的gif编解码。 编码用gdi解析常用图片格式,然后组装成gif 解码吧gif的每一帧转换成dib gif文件格式网上有很多介绍 gif用的变长lzw压缩算法: 没弄懂原理,只知道过程。压缩取一个字符作为后缀,看看字符串是否存在。存在,用对应的编码作为前缀继续取;不存在把字符串添加到字典,前缀添加到输出流,后缀作为前缀继续取。解压取一个编码看看字典中是否存在。存在用对应的字符串的第一个字符作为后缀,看看当前字符串是否存在,不存在添加到字典中,