类似WinZip的压缩源代码-文件处理-C++源码
2021-08-12 11:45:59 48KB -C++源码
1
C++ zip压缩解压缩源代码 压缩时调用 #include "zip.h" HZIP hz = CreateZip("c:\\simple1.zip",0); ZipAdd(hz,"znsimple.bmp", "c:\\simple.bmp"); ZipAdd(hz,"znsimple.txt", "c:\\simple.txt"); CloseZip(hz); 解压时调用 #include "unzip.h" // HZIP hz = OpenZip("c:\\stuff.zip",0); ZIPENTRY ze; GetZipItem(hz,-1,&ze); int numitems=ze.index; for (int i=0; i
2021-05-29 16:26:39 166KB C++ zip压缩 zip解压 zip压缩算法
1
/* $VER: unlzx.c 1.0 (22.2.98) */ /* Created: 11.2.98 */ /* Added Pipe support to read from stdin (03.4.01, Erik Meusel) */ /* LZX Extract in (supposedly) portable C. */ /* Compile with: */ /* gcc unlzx.c -ounlzx -O6 */ /* Thanks to Dan Fraser for decoding the coredumps and helping me track */ /* down some HIDEOUSLY ANNOYING bugs. */ /* Everything is accessed as unsigned char's to try and avoid problems */ /* with byte order and alignment. Most of the decrunch functions */ /* encourage overruns in the buffers to make things as fast as possible. */ /* All the time is taken up in crc_calc() and decrunch() so they are */ /* pretty damn optimized. Don't try to understand this program. */
2021-03-18 10:44:27 9KB LZX 解压缩 源代码
1
C语言实现JPEG压缩与解压缩
2019-12-29 18:49:52 358KB jpeg压缩 c c++ 源代码
1
用MATLAB实现的分型图像压缩算法,已调试,可用。
2019-12-21 20:15:59 315KB 分形图像压缩
1
霍夫曼,算术,行程,jpg 图像压缩在matlab下的源代码
1
本程序用游程编码的思想实现了基于图像数据的压缩方法的实现,并有源代码和文档。
2019-12-21 20:11:04 637KB 游程编码 图像数据 压缩 源代码
1
目前压缩率最高,图像失真率最小的技术,用C编程的源代码,有压缩效果比较,DEMO演示。
2019-12-21 19:38:19 4.53MB 小波图像压缩 图像压缩 图像处理 图像
1