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

how to convert pdf array buffer to pdf file using nodejs

以下是pdf缓冲区。我想将缓冲区转换为 pdf 文件。

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

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

// res.sendFile(path [, options] [, fn])

let options = {
  headers: {
      'TheDataYouWantToSend': Date.now() // for example a timestamp
  }
}

req.sendFile(absolutePathToFile, options)

希望对您有所帮助