如何使用nodejs将pdf数组缓冲区转换为pdf文件



下面是pdf缓冲区。我想把缓冲区转换成pdf文件。

data = {
"file": {
"type": "Buffer",
"data": [
102,
24,
62
]
},
}
res.send( data );

您可以使用res.sendFile并使用标头发送一些数据。

// res.sendFile(path [, options] [, fn])
let options = {
headers: {
'TheDataYouWantToSend': Date.now() // for example a timestamp
}
}
req.sendFile(absolutePathToFile, options)

我希望这能帮助

相关内容

  • 没有找到相关文章

最新更新