discordjs using base64 image in webhook embed(在 webhook 嵌入中使用 base64 图像的 discordjs)
问题描述
如何使用 webhook 将图像插入到不和谐嵌入中.我将图像保存为从数据库中获取的 base64 字符串.我试过这个但是我只得到一个空嵌入
How do I insert an image into a discord embed using webhook. I have the image saved as a base64 string which I get from database. I have tried this but I only get an empty embed
const data = b64image.split(',')[1];
const buf = new Buffer.from(data, 'base64');
const file = new Discord.MessageAttachment(buf, 'img.jpeg');
const embed = new Discord.MessageEmbed()
.setImage('attachment://img.jpeg')
webhookClient.send('', {
username: userName,
embeds: [embed],
});
推荐答案
我尝试使用较小的图像,问题中的代码有效.所以这是请求大小的问题.我通过设置一个快速路由来提供图像并使用嵌入中的 URL 来修复它
I tried with a smaller image, and the code in the question worked. So it was a problem with the size of the request. I fixed it by setting up an express route to serve images and used the URL in the embed
router.get('/thumb/:imgId', (req, res) => {
const imgId = req.params.imgId.toString().trim();
let file = Buffer.from(b64Image.split(',')[1], 'base64')
res.status(200);
res.set('Content-Type', 'image/jpeg');
res.set('Content-Length', file.length)
res.send(file)
});
const embed = new Discord.MessageEmbed()
.setImage(`${base_url}/img/thumb/${imgId}`)
webhookClient.send('', {
username: userName,
embeds: [embed],
});
这篇关于在 webhook 嵌入中使用 base64 图像的 discordjs的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 webhook 嵌入中使用 base64 图像的 discordjs
基础教程推荐
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01