I'm working on a bot that makes a custom image for when people join with their profile picture and name. I have both those things working I just need to correctly position and size it.
My code for the profile picture is
And it shows up like this https://gyazo.com/235e6551689d7bc013850905547d3ff9
My code for the profile picture is
Code:
const { body: buffer } = await snekfetch.get(member.user.displayAvatarURL);
const avatar = await Canvas.loadImage(buffer);
ctx.drawImage(avatar, 10, 10, 150, 150);
And it shows up like this https://gyazo.com/235e6551689d7bc013850905547d3ff9
