Skip to content
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.

Latest commit

 

History

History
24 lines (16 loc) · 523 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 523 Bytes

azure-imagemagick-nodejs

Installation

Install the below siteextension on azure web app.

You will find the extension when you search "ImageMagick-nodejs" on azure kudu platform (by site extension tab).

https://www.siteextensions.net/packages/ImageMagick-nodejs/

Usage

Include GrahpicsMagick/ImageMagick with following code

const gm = require('gm');
const imageMagick = gm.subClass(
  {
    imageMagick: true,
    appPath:  "D:\\home\\SiteExtensions\\ImageMagick-nodejs\\lib\\"
  }
);