zlib 常量


¥zlib constants

zlib.h 中定义的所有常量也在 require('node:zlib').constants 上定义。在正常的操作过程中,没有必要使用这些常量。它们被记录在案,因此它们的存在不足为奇。本节几乎直接取自 zlib 文档

¥All of the constants defined in zlib.h are also defined on require('node:zlib').constants. In the normal course of operations, it will not be necessary to use these constants. They are documented so that their presence is not surprising. This section is taken almost directly from the zlib documentation.

以前,常量可直接从 require('node:zlib') 获得,例如 zlib.Z_NO_FLUSH。目前仍然可以直接从模块访问常量,但已弃用。

¥Previously, the constants were available directly from require('node:zlib'), for instance zlib.Z_NO_FLUSH. Accessing the constants directly from the module is currently still possible but is deprecated.

允许的刷新值。

¥Allowed flush values.

  • zlib.constants.Z_NO_FLUSH

  • zlib.constants.Z_PARTIAL_FLUSH

  • zlib.constants.Z_SYNC_FLUSH

  • zlib.constants.Z_FULL_FLUSH

  • zlib.constants.Z_FINISH

  • zlib.constants.Z_BLOCK

  • zlib.constants.Z_TREES

压缩/解压缩函数的返回代码。负值是错误,正值用于特殊但正常的事件。

¥Return codes for the compression/decompression functions. Negative values are errors, positive values are used for special but normal events.

  • zlib.constants.Z_OK

  • zlib.constants.Z_STREAM_END

  • zlib.constants.Z_NEED_DICT

  • zlib.constants.Z_ERRNO

  • zlib.constants.Z_STREAM_ERROR

  • zlib.constants.Z_DATA_ERROR

  • zlib.constants.Z_MEM_ERROR

  • zlib.constants.Z_BUF_ERROR

  • zlib.constants.Z_VERSION_ERROR

压缩级别。

¥Compression levels.

  • zlib.constants.Z_NO_COMPRESSION

  • zlib.constants.Z_BEST_SPEED

  • zlib.constants.Z_BEST_COMPRESSION

  • zlib.constants.Z_DEFAULT_COMPRESSION

压缩策略。

¥Compression strategy.

  • zlib.constants.Z_FILTERED

  • zlib.constants.Z_HUFFMAN_ONLY

  • zlib.constants.Z_RLE

  • zlib.constants.Z_FIXED

  • zlib.constants.Z_DEFAULT_STRATEGY