i need help with the assets area
i want my bot to use canvas but it cant load the image i have in assets
Picture:https://gyazo.com/a14e423eee0f6765adff14fea3ac66a4
Picture 2:https://gyazo.com/b186d4a8c86de0dec7183452f1312ecd
Error:
(node:4749) UnhandledPromiseRejectionWarning: Error: error while reading from input stream
at Image.src (/rbd/pnpm-volume/bfc224d2-0f81-4f4f-aa60-bb35a754e1e3/node_modules/.registry.npmjs.org/canvas/2.0.0-alpha.12/node_modules/canvas/lib/image.js:30:17)
at Promise (/rbd/pnpm-volume/bfc224d2-0f81-4f4f-aa60-bb35a754e1e3/node_modules/.registry.npmjs.org/canvas/2.0.0-alpha.12/node_modules/canvas/index.js:34:15)
at new Promise (<anonymous>)
at Object.loadImage (/rbd/pnpm-volume/bfc224d2-0f81-4f4f-aa60-bb35a754e1e3/node_modules/.registry.npmjs.org/canvas/2.0.0-alpha.12/node_modules/canvas/index.js:23:10)
at Client.client.on (/app/server.js:41:37)
Code:
t
const Discord = require(‘discord.js’);
const client = new Discord.Client();
const Canvas = require(‘canvas’);
client.on(‘guildMemberAdd’, async member => {
const channel = member.guild.channels.find(ch => ch.name === ‘member-log’);
if (!channel) return;
const canvas = Canvas.createCanvas(700, 250);
const ctx = canvas.getContext('2d');
// Since the image takes time to load, you should await it
const background = await Canvas.loadImage('./wallpaper.jpg');
// This uses the canvas dimensions to stretch the image onto the entire canvas
ctx.drawImage(background, 0, 0, canvas.width, canvas.height);
// Use helpful Attachment class structure to process the file for you
const attachment = new Discord.Attachment(canvas.toBuffer(), 'welcome-image.png');
channel.send(`Welcome to the server, ${member}!`, attachment);
});