0.1.24 • Published 3 years ago

bs-magick v0.1.24

Weekly downloads
-
License
ISC
Repository
-
Last release
3 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

3 years ago

0.1.21

3 years ago

0.1.22

3 years ago

0.1.23

3 years ago

0.1.24

3 years ago

0.1.15

3 years ago

0.1.16

3 years ago

0.1.17

3 years ago

0.1.18

3 years ago

0.1.19

3 years ago

0.1.14

3 years ago

0.1.13

3 years ago

0.1.12

3 years ago