1.0.6 • Published 2 years ago

ethernaalframe v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Enthernaal framed image generator

Description

This is a simple utility tool to render a PNG image with the ethernaal frame.

Installation

npm install ethernaalframe

Usage

//For file inputs
const saveWithFrame = require("ethernaalframe").saveWithFrame;
let imagePathIn = "test.png";
let imagePathOut = "framed_test.png";
let template = "NF2T";
let invertedColors = false;
saveWithFrame(imagePathIn, imgPathOut, template, invertedColors);

//For base64 string img
let b64Img = ""; //base64 string image
const saveWithFrameB64 = require("ethernaalframe").saveWithFrameB64;
const framedImage = await saveWithFrameB64(b64Img, template, invertedColors);

Parameters are the following :

imagePathIn = Source image (path)

imgPathOut = Output PNG (path)

template = "eNFT", "flaNFT", "NF2T"

invertedColors = boolean indicating if the frame should be in white or black color (false = black)

Source image must be 4026x5826 px

templates for "eNFT", "flaNFT", "NF2T" are in /assets/

1.0.2

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago