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

fatihturgut/azure-imagemagick-nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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\\"
  }
);