zlib.unzipSync()方法是Zlib模塊的內置應用程序編程接口,用於通過Unzip解壓縮數據塊。
用法:
zlib.unzipSync( buffer, options )
參數:此方法接受上述和以下所述的兩個參數:
- buffer:它可以是Buffer,TypedArray,DataView,ArrayBuffer和字符串的類型。
- options:它是一個可選參數,其中包含zlib選項。
返回值:它使用Unzip返回數據塊。
以下示例說明了Node.js中zlib.unzipSync()方法的使用:
範例1:
// Node.js program to demonstrate the
// zlib.unzipSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "NidhiSingh";
// Calling gzipSync method
var gzi = zlib.gzipSync(input);
// Calling unzipSync method
var decom = zlib.unzipSync(
new Buffer.from(gzi)).toString('base64');
console.log(decom);
輸出:
TmlkaGlTaW5naA==
範例2:
// Node.js program to demonstrate the
// zlib.unzipSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "NidhiSingh";
// Calling gzipSync method
var gzi = zlib.gzipSync(input).toString('hex');
// Calling unzipSync method
var decom = zlib.unzipSync(
new Buffer.from(gzi, 'hex')).toString('hex');
console.log(decom);
輸出:
4e6964686953696e6768
參考: https://nodejs.org/api/zlib.html#zlib_zlib_unzipsync_buffer_options
相關用法
- Node.js GM implode()用法及代碼示例
- Node.js GM recolor()用法及代碼示例
- Node.js GM border()用法及代碼示例
- Node.js GM whitePoint()用法及代碼示例
- Node.js GM randomThreshold()用法及代碼示例
- Node.js GM magnify()用法及代碼示例
- Node.js GM orderedDither()用法及代碼示例
- Node.js GM modulate()用法及代碼示例
- Node.js GM flip()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Node.js | zlib.unzipSync() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。