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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。