effects-gallery.js

1.1.3 • Public • Published

EffectsJS

A simple module to add effects to your pictures 🎨

Project under construction... follow the progress on the Discord server.

If you don't have any development knowledge, it is recommended to join the Discord support server to get help.

🎠 A nice and easy to use system

Add a blur filter to an image ? It's possible and easy !

const { Blur } = require('effects-gallery.js');

new Blur()
    .setImage('./img.png')
    .setLevel(5)
    .write('./new.png')
    .build().then(console.log('Saved'))

new Blur({
    image: './img.png',
    level: 5,
    file: './new.png'
}).build().then(console.log('Saved'))

Simple Discord example (discord.js v13)

const { Blur } = require('effects-gallery.js');
const { Client, Intents } = require('discord.js');

const client = new Client({
    intents: [
        Intents.FLAGS.GUILDS,
        Intents.FLAGS.GUILD_MESSAGES
    ]
});

client.on('messageCreate', (message) => {
    if (message.author.bot) return;

    new Blur()
        .setImage('./img.png')
        .setLevel(5)
        .build().then(res => {
            message.channel.send({
                content: 'Hello world', files: [
                    { attachment: res }
                ]
            })
        })
});

client.login('');

⚡️ Available features

Find the features available on the GitHub page of the project.

Realized with ❤️ by ZerioDev.

Package Sidebar

Install

npm i effects-gallery.js

Weekly Downloads

0

Version

1.1.3

License

MIT

Unpacked Size

273 kB

Total Files

16

Last publish

Collaborators

  • zeriodev