npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aoi.watermark

v1.0.0

Published

A simple package for watermarking images

Downloads

8

Readme

aoi.watermark


🌟 This is a port of DevilsCord for aoi.js.

aoi.watermark is a simple package for watermarking images for people using aoi.js!

index.js:

const aoijs = require('aoi.js');

const bot = new aoijs.AoiClient({
  token: process.env.TOKEN,
  prefix: ["$getGuildVar[prefix]"],
  intents: [
    "Guilds",
    "GuildMessages"
    ],
  events: [
    "onMessage"
    ]
});

+ require('./node_modules/aoi.watermark/src/func.js')(bot)

Function Usage: $watermark[key;image;watermark]

  • Key (Required) - Your Img.BB API key. To get one, click here, Login/Register and create a key!
  • Image - Image URL you want to watermark.
  • Watermark - Watermark URL you want to apply.

Errors:

There are three scenarios here:

  1. Watermark will apply successfully and it will return the URL to watermarked product.
  2. Provided Background Image will not be of supported types (.jpeg, .jpg, .png, .webp).
  3. Provided Watermark Image will not be of supported types (.jpeg, .jpg, png).
1st Case:

When the watermark is applied, It will return an Img.BB url. For example: https://i.ibb.co/Bj86cXW/bfb53095fc89.png.

2nd Case:

If the image is not of supported types, It will return Unknown Image Type.

3rd Case:

If the watermark is not of supported types, It will return Unknown Watermark Type.

Watermark Command Example:

module.exports = [{
name: "watermark",
code: `
$watermark[$get[key];$nonEscape[$message];$get[watermark]]
$let[key;KEY_HERE]
$let[watermark;WATERMARK_URL]
$onlyIf[$isValidLink[$message]==true;URL is invalid]
$onlyIf[$message!=;Please enter a URL]
`
}]

Example:

Input:

Input Unwatermarked

Output:

Output Watermarked

Input:

Input Unwatermarked

Output:

Output Watermarked

Same watermark was used for both the images but it resizes automatically according to the image!


Credits:

  • @_devilsking_ (736115344539779072) - For making DevilsCord.
  • @leref (608358453580136499) and whole Akarui Development Team - For making aoi.js, a great wrapper for interacting with Discord.

FAQs:

Q1. Why is the message getting sent after soo long?

Answer: This function relies on many other processes to be completed first like uploading of image to img.bb server (if your network is slow, it may take a while), processing the image to apply watermark (if your system is slow, it may take a while) and converting webp buffer to jpeg buffer.

Q2. Which formats can you apply watermark?

Answer: You can currently apply watermark on .png, .jpeg, .jpg, .webp, .svg.

Q3. I got an error! Where can I report?

Answer: At the moment, I dont have any support server but you can always dm me at @asheyxd (428191892950220800)