Memer.ts
is a versatile npm package for easy image manipulation in TypeScript and JavaScript.
It allows you to add text, apply filters, resize images, and more, all with a simple and efficient API that supports various image formats.
To begin using memer.ts
, follow these simple steps:
Install
memer.ts
from npm using npm or yarn.
npm install memer.ts
yarn add memer.ts
Once installed, you can import Memer.ts
into your TypeScript or JavaScript files and start manipulating images.
Here’s how to import Memer.ts
:
// Basic usage example
import fs from "fs/promises";
import { Memer } from "memer.ts";
const memer = new Memer()
async function createImageFile() {
try {
// using stonks function
const buffer = await memer.stonks("Memer.ts UP.");
// Write the buffer to a file called image.png
await fs.writeFile("image.png", buffer);
console.log("Image file created successfully.");
} catch (error) {
console.error("Error creating image file:", error);
}
}
createImageFile();
Uh-oh, looks like you stumbled upon a bug? No worries, we're here to squash it! Just head over to our issues section on GitHub and let us know what's up.
Feel free to contribute to this project! Whether you're an experienced developer or have been in the field for a while, your help is valuable.