181 lines
3.8 KiB
Markdown
181 lines
3.8 KiB
Markdown
<a href="https://nodei.co/npm/discord-image-generation/"><img src="https://nodei.co/npm/discord-image-generation.png?downloads=true&downloadRank=true&stars=true"></a>
|
|
|
|
<a href="https://discord.gg/qvzwqaM"><img src="https://discord.com/api/guilds/661897530459684865/widget.png" alt="Discord server"/></a>
|
|
|
|
# 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 <a href="https://github.com/Mr-KayJayDee/discord-image-generation/issues">issue section.</a>
|
|
|
|
A correct and understandable issue contains :
|
|
- Steps to reproduce
|
|
- Code that summonned the error
|
|
- The complete error
|
|
|
|
You can also join me on my <a href="https://discord.gg/qvzwqaM">discord server.</a>
|
|
|
|
# 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
|
|
|
|
|
|
# Download
|
|
|
|
You can download it from <a href="https://www.npmjs.com/package/discord-image-generation">npmjs</a>.
|
|
|
|
```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(`<Avatar>`, `<Level(Number)>`);
|
|
|
|

|
|
|
|
- .facepalm(`<Avatar>`);
|
|
|
|

|
|
|
|
- .gay(`<Avatar>`);
|
|
|
|

|
|
|
|
- .rip(`<Avatar>`);
|
|
|
|

|
|
|
|
- .trash(`<Avatar>`);
|
|
|
|

|
|
|
|
- .circle(`<Avatar>`);
|
|
|
|

|
|
|
|
- .greyscale(`<Avatar>`);
|
|
|
|

|
|
|
|
- .kiss(`<Avatar>`, `<Avatar2>`);
|
|
|
|

|
|
|
|
- .sepia(`<Avatar>`);
|
|
|
|

|
|
|
|
- .mms(`<Avatar>`);
|
|
|
|

|
|
|
|
- .spank(`<Avatar>`, `<Avatar2>`);
|
|
|
|

|
|
|
|
- .color(`<Color>`);
|
|
|
|
> An hex color is needed, like "#FF0000"
|
|
|
|

|
|
|
|
- .triggered(`<Avatar>`);
|
|
|
|

|
|
|
|
- .hitler(`<Avatar>`);
|
|
|
|

|
|
|
|
- .batslap(`<Avatar>`, `<Avatar2>`);
|
|
|
|

|
|
|
|
- .bed(`<Avatar>`, `<Avatar2>`);
|
|
|
|

|
|
|
|
- .invert(`<Avatar>`);
|
|
|
|

|
|
|
|
- .wanted(`<Avatar>`, `<Currency>`);
|
|
|
|
> Currency ($, €, ...)
|
|
|
|

|
|
|
|
- .beautiful(`<Avatar>`);
|
|
|
|

|
|
|
|
- .jail(`<Avatar>`);
|
|
|
|

|
|
|
|
- .affect(`<Avatar>`);
|
|
|
|

|
|
|
|
- .delete(`<Avatar>`);
|
|
|
|

|
|
|
|
- .thomas(`<Avatar>`);
|
|
|
|
 |