Skip to content

Instantly share code, notes, and snippets.

View skeletoncrewrip's full-sized avatar

The Skeleton Crew skeletoncrewrip

View GitHub Profile
@skeletoncrewrip
skeletoncrewrip / png_increase.mjs
Last active May 24, 2023 09:18
Enlarge the size of PNGs by repeatedly writing a string to metadata
import png from 'png-metadata';
import fs from 'fs';
const desiredSize = 24000;
const folder = './assets/';
const creatorString = 'Skeleton Crew';
const fillerString = 'https://treattoolbox.com ';
const bumpImageSize = async (file) => {
if (file.endsWith('.png')) {