diff --git a/README.md b/README.md index 2e49c737..0cff41e6 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ in the appropriate channel's topic to use it. ## Commands -Total: 407 +Total: 409 ### Utility: @@ -447,6 +447,8 @@ Total: 407 * **shields-io-badge:** Creates a badge from shields.io. * **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. diff --git a/commands/edit-image/squish.js b/commands/edit-image/squish.js new file mode 100644 index 00000000..9f9aecbf --- /dev/null +++ b/commands/edit-image/squish.js @@ -0,0 +1,51 @@ +const Command = require('../../structures/Command'); +const { createCanvas, loadImage } = require('canvas'); +const request = require('node-superfetch'); + +module.exports = class SquishCommand extends Command { + constructor(client) { + super(client, { + name: 'squish', + group: 'edit-image', + memberName: 'stretch', + description: 'Draws an image or a user\'s avatar but squished across the X or Y axis.', + throttling: { + usages: 1, + duration: 10 + }, + clientPermissions: ['ATTACH_FILES'], + args: [ + { + key: 'axis', + prompt: 'What axis do you want to squish?', + 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: 'squish.png' }] }); + } catch (err) { + return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); + } + } +}; diff --git a/commands/edit-image/stretch.js b/commands/edit-image/stretch.js new file mode 100644 index 00000000..f543e948 --- /dev/null +++ b/commands/edit-image/stretch.js @@ -0,0 +1,51 @@ +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!`); + } + } +}; diff --git a/package.json b/package.json index 5e6148aa..f7cc153b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "114.0.3", + "version": "114.1.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {