当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js zlib.brotliCompressSync()用法及代码示例


zlib.brotliCompressSync()方法是Zlib模块的内置应用程序编程接口,用于通过BrotliCompress压缩数据块。

用法:

zlib.brotliCompressSync( buffer, options )

参数:此方法接受上述和以下所述的两个参数:



  • buffer:此参数保存类型为Buffer,TypedArray,DataView,ArrayBuffer,字符串的缓冲区。
  • options:它是一个可选参数。

返回值:它使用BrotliCompress返回数据块。

以下示例说明了Node.js中zlib.brotliCompressSync()方法的使用:

范例1:

// Node.js program to demonstrate the      
// zlib.brotliCompressSync() method   
  
// Including zlib module 
var zlib = require('zlib'); 
  
// Declaring input and assigning 
// it a value string 
var input = "0123456789"; 
  
// Calling brotliCompressSync method 
var brotliCom = zlib.brotliCompressSync(input); 
  
console.log(brotliCom);

输出:

// Buffer 8b 04 80 30 31 32 33 34 35 36 37 38 39 03

范例2:

// Node.js program to demonstrate the      
// zlib.brotliCompressSync() method   
  
// Including zlib module 
var zlib = require('zlib'); 
  
// Declaring input and assigning 
// it a value string 
var input = "0123456789"; 
  
// Calling brotliCompressSync method 
var brotliCom = zlib.brotliCompressSync(input).toString('hex'); 
  
console.log(brotliCom);

输出:

8b04803031323334353637383903

参考: https://nodejs.org/api/zlib.html#zlib_zlib_brotlicompresssync_buffer_options




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | zlib.brotliCompressSync() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。