COMPRESS.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:2k
源码类别:

图片显示

开发平台:

Visual C++

  1. /* compress.c -- compress a memory buffer
  2.  * Copyright (C) 1995-1996 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h 
  4.  */
  5. /* $Id: compress.c,v 1.10 1996/05/23 16:51:12 me Exp $ */
  6. #include "zlib.h"
  7. /* ===========================================================================
  8.      Compresses the source buffer into the destination buffer.  sourceLen is
  9.    the byte length of the source buffer. Upon entry, destLen is the total
  10.    size of the destination buffer, which must be at least 0.1% larger than
  11.    sourceLen plus 8 bytes. Upon exit, destLen is the actual size of the
  12.    compressed buffer.
  13.      This function can be used to compress a whole file at once if the
  14.    input file is mmap'ed.
  15.      compress returns Z_OK if success, Z_MEM_ERROR if there was not
  16.    enough memory, Z_BUF_ERROR if there was not enough room in the output
  17.    buffer.
  18. */
  19. int compress (dest, destLen, source, sourceLen)
  20.     Bytef *dest;
  21.     uLongf *destLen;
  22.     const Bytef *source;
  23.     uLong sourceLen;
  24. {
  25.     z_stream stream;
  26.     int err;
  27.     stream.next_in = (Bytef*)source;
  28.     stream.avail_in = (uInt)sourceLen;
  29. #ifdef MAXSEG_64K
  30.     /* Check for source > 64K on 16-bit machine: */
  31.     if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
  32. #endif
  33.     stream.next_out = dest;
  34.     stream.avail_out = (uInt)*destLen;
  35.     if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
  36.     stream.zalloc = (alloc_func)0;
  37.     stream.zfree = (free_func)0;
  38.     stream.opaque = (voidpf)0;
  39.     err = deflateInit(&stream, Z_DEFAULT_COMPRESSION);
  40.     if (err != Z_OK) return err;
  41.     err = deflate(&stream, Z_FINISH);
  42.     if (err != Z_STREAM_END) {
  43.         deflateEnd(&stream);
  44.         return err == Z_OK ? Z_BUF_ERROR : err;
  45.     }
  46.     *destLen = stream.total_out;
  47.     err = deflateEnd(&stream);
  48.     return err;
  49. }