gpt4 book ai didi

javascript - NodeJS 提供来自 base64 的图像

转载 作者:行者123 更新时间:2023-11-28 18:42:07 24 4
gpt4 key购买 nike

我的 Meteor 应用程序上有一条路线:

    this.route("/userimg/:id", function(){
console.log("hello");
img_base64 = Meteor.users.findOne(this.params.id).userimage;
this.response.writeHead(200, {'Content-Type': 'image/png' });

},{where: 'server'});

通过这条路线,我想为我的 Mongo-Collection 中的用户图像提供服务。我的收藏中有一个 base64 编码的图像,并将其保存到 varibale img_base64 中。我的问题是,我需要如何处理我的 base64 变量才能将其响应为 png?我需要像 this.response.end(img_base64,....) 这样的东西。感谢您的帮助!

最佳答案

这实际上就是您所需要的(假设 img_base64 是一个字符串):

this.response.end(img_base64, 'base64');

关于javascript - NodeJS 提供来自 base64 的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35970415/

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