This repository was archived by the owner on Jun 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
73 lines (58 loc) · 2.35 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
var Discord = require("discord.js");
var client = new Discord.Client();
const JIMP = require('jimp');
client.on("ready", function(e) {
console.log("Boneless", e);
console.log(client.user);
});
client.on('message', message => {
if (message.content === 'test') {
// Let us tell the user we are creating their profile
message.channel.startTyping();
// First we want to get the user's profile picture
let PFP = message.author.avatarURL;
PFP = PFP.replace(/.gif/g, ".png")
// Next we want to load the sexy h0t background
// Like the example you sent just now right?
// Background would be a picure, not the layout thing ayyyy
JIMP.read('./res/background.png').then((background) => {
// Load the overlay (the thing with the boxes)
JIMP.read('./res/overlay.png').then((overlay) => {
// Load their profile picture
JIMP.read(PFP).then((profile) => {
background.crop(
(background.bitmap.width - overlay.bitmap.width)/2,
(background.bitmap.height - overlay.bitmap.height)/2,
overlay.bitmap.width,
overlay.bitmap.height);
overlay.opacity(.25);
// Now we want to start layering them
background.composite(overlay, 0, 0);
// PUT THE PFP ON
profile.resize(435, 435);
background.composite(profile, 0, 0);
JIMP.loadFont(JIMP.FONT_SANS_64_BLACK).then((font) => {
//console.log(font);
background.print(font, 450, 0, message.author.tag); // print a message on an image
// Get readable buffer
background.getBuffer(JIMP.MIME_PNG, (error, buffer) => {
// Send it
message.channel.send("", {
files: [{
attachment: buffer,
name: "profile.png"
}]
});
// We can stop once we have sent the file
message.channel.stopTyping();
});
});
});
});
});
}
});
client.on('debug', console.log);
client.on('warn', console.warn);
client.on('error', console.error);
client.login('MzE0NTAyNTQxNDk0ODQ1NDUw.DJIuWA.A_CeGU8uot1Y6en444gcRJLTsrI');