Discord server # discord-image-generation A powerfull module that allow you to generate awesome images. # Bugs and glitches Feel free to report all bugs and glitches by creating an issue in the issue section. A correct and understandable issue contains : - Steps to reproduce - Code that summonned the error - The complete error You can also join me on my discord server. # Changelog ## v0.1.9 - Added options for the wanted. - The base image has been updated - There is now a random price diplayed - You can now configure a currency - Added .thomas() ## v0.1.11 - Added .tatoo() - Updated JSDoc ## v1.1.12 - Saved all examples to imgur ## v1.1.13 - Added example for .tatoo() - Fixed the litle hole at the top of the users pic on .thomas() # Download You can download it from npmjs. ```cli npm i discord-image-generation ``` # Configuration The first step is to import the module in your code. ```js const DIG = require("discord-image-generation"); ``` Then you have to request your image and send it as an attachement. ```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"); // Listen to the ready event bot.on("ready", () => { console.log("ok"); }) // Listen to the message event bot.on("message", async (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 DIG.delete(avatar) // Add the image as an attachement let attach = new Discord.MessageAttachment(img, "delete.png");; message.channel.send(attach) } }) // Log in to the bot bot.login("super_secret_token") ```` # Available images - .blur(``, ``); ![Blur](https://imgur.com/JqpNFTY.png) - .facepalm(``); ![Facepalm](https://imgur.com/cdPC3P1.png) - .gay(``); ![Gay](https://imgur.com/BDTrXzZ.png) - .rip(``); ![RIP](https://imgur.com/MgsRH8o.png) - .trash(``); ![Trash](https://imgur.com/nwAHGgF.png) - .circle(``); ![Circle](https://imgur.com/0Zo8NYS.png) - .greyscale(``); ![Greyscale](https://imgur.com/h3ahY7Z.png) - .kiss(``, ``); ![Kiss](https://imgur.com/sSoCAeH.png) - .sepia(``); ![Sepia](https://imgur.com/OTbKVtj.png) - .mms(``); ![MMS](https://imgur.com/nH3URHb.png) - .spank(``, ``); ![Spank](https://imgur.com/VRvogo7.png) - .color(``); > An hex color is needed, like "#FF0000" ![Color](https://imgur.com/40tMwfe.png) - .triggered(``); ![Triggered](https://imgur.com/0QvyYQa.png) - .hitler(``); ![Hitler](https://imgur.com/wK9puxH.png) - .batslap(``, ``); ![Batslap](https://imgur.com/oYMpa5A.png) - .bed(``, ``); ![Bed](https://imgur.com/b1idSnr.png) - .invert(``); ![Invert](https://imgur.com/Rl0wGQM.png) - .wanted(``, ``); > Currency ($, €, ...) ![Wanted](https://imgur.com/SFGRvSK.png) - .beautiful(``); ![Beautiful](https://imgur.com/HGZkmXo.png) - .jail(``); ![Jail](https://imgur.com/QslACNo.png) - .affect(``); ![Affect](https://imgur.com/g4Gaehb.png) - .delete(``); ![Delete](https://imgur.com/6V1IYJp.png) - .thomas(``); ![Thomas](https://imgur.com/5Iv6t9v.png) - .tatoo(``) ![Tatoo](https://imgur.com/wJju4UJ.png)