gpt4 book ai didi

javascript - 如何从缓冲区返回文件流?

转载 作者:行者123 更新时间:2023-12-01 15:42:08 25 4
gpt4 key购买 nike

我已经存储了我的图像,它的大小(以字节为单位)和它的类型在 mysql db 上。

当我获取它时,我正在取回图像的缓冲区,现在我试图弄清楚如何将它发送回我的客户端以便它呈现图像?

我的路线内的代码:

  const img = await db.images.findByPk(parser.setValueAsBIN(p.id));

const myReadableStreamBuffer = new streamBuffers.ReadableStreamBuffer({
frequency: 10, // in milliseconds.
chunkSize: img.Length, // in bytes.
});



myReadableStreamBuffer.put(img.dataValues.imageData);

下一步是什么?

如果我要登录 myReadableStreamBuffer
我只是得到:
Readable {   _readableState:    ReadableState {
objectMode: false,
highWaterMark: 16384,
buffer: BufferList { head: null, tail: null, length: 0 },
length: 0,
pipes: null,
pipesCount: 0,
flowing: null,
ended: false,
endEmitted: false,
reading: false,
sync: true,
needReadable: false,
emittedReadable: false,
readableListening: false,
resumeScheduled: false,
paused: true,
emitClose: true,
autoDestroy: false,
destroyed: false,
defaultEncoding: 'utf8',
awaitDrain: 0,
readingMore: false,
decoder: null,
encoding: null }, readable: true, domain: null, _events: [Object: null prototype] {}, _eventsCount: 0, _maxListeners: undefined, stopped: false, stop: [Function], size: [Function], maxSize: [Function], put: [Function], _read: [Function] }

最佳答案

Fastify 在 reply.send() 中也支持流和缓冲区。方法。

这里如何管理它们:


const fs = require('fs')
const { Readable } = require('stream')
const fastify = require('fastify')({ logger: true })

fastify.get('/', (req, reply) => {
const buffer = fs.readFileSync('demo.png')
reply.type('image/png') // if you don't set the content, the image would be downloaded by browser instead of viewed
reply.send(buffer)
})

fastify.get('/stream', (req, reply) => {
const buffer = fs.readFileSync('demo.png') // sync just for DEMO
const myStream = new Readable({
read () {
this.push(buffer)
this.push(null)
}
})

reply.type('image/png')
reply.send(myStream)
})

fastify.listen(3000)


(我会避免使用 stream-buffers 包,因为它似乎不再需要维护 - Unresolved 问题 - 并且 node.js 中的默认 stream 模块已大大改进)

关于javascript - 如何从缓冲区返回文件流?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61946609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com