Okay so Squish and Stretch end up doing the same thing

This commit is contained in:
Dragon Fire
2020-05-03 22:31:07 -04:00
parent 0bd77bfbad
commit e77831b595
4 changed files with 2 additions and 53 deletions
-1
View File
@@ -448,7 +448,6 @@ Total: 409
* **silhouette:** Draws a silhouette of an image or a user's avatar.
* **square:** Draws an image or a user's avatar as a square.
* **squish:** Draws an image or a user's avatar but squished across the X or Y axis.
* **stretch:** Draws an image or a user's avatar but stretched across the X or Y axis.
* **tint:** Draws an image or a user's avatar but tinted a specific color.
* **zero-dialogue:** Sends a text box from Megaman Zero with the quote of your choice.
+1
View File
@@ -6,6 +6,7 @@ module.exports = class SquishCommand extends Command {
constructor(client) {
super(client, {
name: 'squish',
aliases: ['stretch'],
group: 'edit-image',
memberName: 'squish',
description: 'Draws an image or a user\'s avatar but squished across the X or Y axis.',
-51
View File
@@ -1,51 +0,0 @@
const Command = require('../../structures/Command');
const { createCanvas, loadImage } = require('canvas');
const request = require('node-superfetch');
module.exports = class StretchCommand extends Command {
constructor(client) {
super(client, {
name: 'stretch',
group: 'edit-image',
memberName: 'stretch',
description: 'Draws an image or a user\'s avatar but stretched across the X or Y axis.',
throttling: {
usages: 1,
duration: 10
},
clientPermissions: ['ATTACH_FILES'],
args: [
{
key: 'axis',
prompt: 'What axis do you want to stretch?',
type: 'string',
oneOf: ['x', 'y'],
parse: axis => axis.toLowerCase()
},
{
key: 'image',
prompt: 'What image would you like to edit?',
type: 'image',
default: msg => msg.author.displayAvatarURL({ format: 'png', size: 512 })
}
]
});
}
async run(msg, { axis, image }) {
const flipX = axis === 'x';
const flipY = axis === 'y';
try {
const { body } = await request.get(image);
const data = await loadImage(body);
const canvas = createCanvas(flipX ? data.width * 2 : data.width, flipY ? data.height * 2 : data.height);
const ctx = canvas.getContext('2d');
ctx.drawImage(data, 0, 0, canvas.width, canvas.height);
const attachment = canvas.toBuffer();
if (Buffer.byteLength(attachment) > 8e+6) return msg.reply('Resulting image was above 8 MB.');
return msg.say({ files: [{ attachment, name: 'stretch.png' }] });
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "114.1.0",
"version": "114.1.1",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {