Added v13 example + example for embed

main
Mr¤KayJayDee 3 years ago
parent 9c811372e2
commit 144b4d4e60

@ -41,6 +41,7 @@ const DIG = require("discord-image-generation");
Then you have to request your image and send it as an attachement. Then you have to request your image and send it as an attachement.
## Discord.js v12
```js ```js
// Import the discord.js library. // Import the discord.js library.
const Discord = require("discord.js") const Discord = require("discord.js")
@ -57,6 +58,7 @@ bot.on("ready", () => {
// Listen to the message event // Listen to the message event
bot.on("message", async (message) => { bot.on("message", async (message) => {
// Send the image in a simple message
if (message.content === "*delete") { if (message.content === "*delete") {
// Get the avatarUrl of the user // Get the avatarUrl of the user
let avatar = message.author.displayAvatarURL({ dynamic: false, format: 'png' }); let avatar = message.author.displayAvatarURL({ dynamic: false, format: 'png' });
@ -66,11 +68,70 @@ bot.on("message", async (message) => {
let attach = new Discord.MessageAttachment(img, "delete.png");; let attach = new Discord.MessageAttachment(img, "delete.png");;
message.channel.send(attach) message.channel.send(attach)
} }
// Send the message with the image attached to an embed
if (message.content === "*blur") {
// Get the avatarUrl of the user
let avatar = message.author.displayAvatarURL({ dynamic: false, format: 'png' });
// Make the image
let img = await new DIG.Blur().getImage(avatar)
// Add the image as an attachement
let embed = new Discord.MessageEmbed()
.setTitle("Blur")
.setImage("attachment://delete.png")
let attach = new Discord.MessageAttachment(img, "blur.png");;
message.channel.send({ embed: embed, files: [attach])
}
})
// Log in to the bot
bot.login("super_secret_token")
```
## Discord.js v13
```js
// Import the discord.js library.
const Discord = require("discord.js")
// Create a new discord.js client.
const bot = new Discord.Client()
const DIG = require("discord-image-generation");
> You can also destructure to avoid repeating DIG.
// Listen to the ready event
bot.on("ready", () => {
console.log("ok");
})
// Listen to the message event
bot.on("messageCreate", async (message) => {
// Send the image in a simple message
if (message.content === "*delete") {
// Get the avatarUrl of the user
let avatar = message.author.displayAvatarURL({ dynamic: false, format: 'png' });
// Make the image
let img = await new DIG.Delete().getImage(avatar)
// Add the image as an attachement
let attach = new Discord.MessageAttachment(img, "delete.png");;
message.channel.send({ files: [attach] })
}
// Send the message with the image attached to an embed
if (message.content === "*blur") {
// Get the avatarUrl of the user
let avatar = message.author.displayAvatarURL({ dynamic: false, format: 'png' });
// Make the image
let img = await new DIG.Blur().getImage(avatar)
// Add the image as an attachement
let embed = new Discord.MessageEmbed()
.setTitle("Blur")
.setImage("attachment://delete.png")
let attach = new Discord.MessageAttachment(img, "blur.png");;
message.channel.send({ embeds: [embed], files: [attach])
}
}) })
// Log in to the bot // Log in to the bot
bot.login("super_secret_token") bot.login("super_secret_token")
```` ```
# Available images # Available images

@ -1,6 +1,6 @@
{ {
"name": "discord-image-generation", "name": "discord-image-generation",
"version": "1.4.9", "version": "1.4.10",
"description": "discord-image-generation is a powerfull module that allow you to generate awesome images.", "description": "discord-image-generation is a powerfull module that allow you to generate awesome images.",
"main": "src/index.js", "main": "src/index.js",
"types": "typings/index.d.ts", "types": "typings/index.d.ts",

Loading…
Cancel
Save