0.1.24 • Published 2 years ago

bs-magick v0.1.24

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

ImageMagickJS

Install

Install using your package manager :

npm i --save bs-magick
or
yarn add bs-magick

Import the package in your js / ts file :

const  magick = require("bs-magick");
or
import magick from "bs-magick";

Available commands

Commands can be used with a classic promise or inside an async function using await.

custom

Send custom command to magick.

Parameters : options : string, magick command with custom options

const options = "convert -background lightblue -fill blue \
      -pointsize 72 label:christophe \
      label.gif";
magick.custom(options)
.then((response) => console.log(response))
.catch((e) => {console.log(e);});
0.1.20

2 years ago

0.1.21

2 years ago

0.1.22

2 years ago

0.1.23

2 years ago

0.1.24

2 years ago

0.1.15

2 years ago

0.1.16

2 years ago

0.1.17

2 years ago

0.1.18

2 years ago

0.1.19

2 years ago

0.1.14

2 years ago

0.1.13

2 years ago

0.1.12

2 years ago