New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

gm-img

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gm-img

a tools to merge images for game maker studio 2

latest
Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

gm-img

A tool to merge images for game maker studio 2

Install

using npm install -g gm-img to install

Usage

Usage: gmm [options] [command]

a tools to merge images for game maker studio 2

Options:
  -V, --version        output the version number
  -n, --name <name>    the name of the result image (default: "result")
  -s, --start <start>  the index of start image which is sorted by name,start f rom 0 (default: 1)
  -d, --dir <dir>      the dir of the images (default: "E:\\github\\merge-img")
  -h, --help           output usage information

Commands:
  m [imgs...]          merge images

Use With Node

const gmImg = require('gm-img');

gmImg({
    name: 'result', // String, the result file name
    start: 1,       // Number, the start image
    dir: `${process.cwd}`,  // String, the path of the images' dir
    imgs: [imagePath...],   // the images' path list, when it's not empty, the params 'start' and 'dir' will not work
}, () => {
    // callback function
});

Keywords

gm

FAQs

Package last updated on 27 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts