zlib.brotliDecompressSync()方法是Zlib模块的内置应用程序编程接口,用于使用BrotliDecompress解压缩数据块。
用法:
zlib.brotliDecompressSync( buffer, options )
参数:此方法接受上述和以下所述的两个参数:
- buffer:此参数保存类型为Buffer,TypedArray,DataView,ArrayBuffer,字符串的缓冲区。
- options:此参数保存zlib选项的值。
返回值:它使用BrotliDecompress返回数据块。
以下示例说明了Node.js中zlib.brotliDecompressSync()方法的使用:
范例1:
// Node.js program to demonstrate the
// zlib.brotliDecompressSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "Nidhi";
// Calling brotliDecompressSync method
var brotliCom = zlib.brotliCompressSync(input);
var brotliDec = zlib.brotliDecompressSync(
new Buffer.from(brotliCom)).toString('hex');
console.log(brotliDec);
输出:
4e69646869
范例2:
// Node.js program to demonstrate the
// zlib.brotliDecompressSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "Nidhi";
// Calling brotliDecompressSync method
var brotliCom = zlib.brotliCompressSync(input).toString('hex')
var brotliDec = zlib.brotliDecompressSync(
new Buffer.from(brotliCom, 'hex')).toString('base64');
console.log(brotliDec);
输出:
TmlkaGk=
参考: https://nodejs.org/api/zlib.html#zlib_zlib_brotlidecompresssync_buffer_options
相关用法
- Node.js GM drawEllipse()用法及代码示例
- Node.js GM monochrome()用法及代码示例
- Node.js GM enhance()用法及代码示例
- Node.js GM modulate()用法及代码示例
- Node.js GM drawPolygon()用法及代码示例
- Node.js GM equalize()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM drawRectangle()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | zlib.brotliDecompressSync() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。