Skip to content
This repository was archived by the owner on Mar 2, 2024. It is now read-only.

Latest commit

 

History

History
12 lines (11 loc) · 371 Bytes

File metadata and controls

12 lines (11 loc) · 371 Bytes

jimp-upng

Replaces jimp's default parser with UPNG.js

Usage

Simply load jimp-upng as the last type:

const upngPlugin = require("jimp-upng");
const Jimp = require("@jimp/custom")({
    plugins: [ require("@jimp/plugins") ],
    types: [ require("@jimp/types"), upngPlugin ]
});