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

image-divider

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

image-divider

Divide a large image to small images

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

image-divider

npm version Build Status

Divide a large image to small images

Preparation

Install imagemagick

This npm-module depends on imagemagick CLI tools.

e.g. Mac with Homebrew:

brew install imagemagick

e.g. Debian:

sudo apt-get install imagemagick

Assert ImageMagick is installed:

$convert --version
Version: ImageMagick 6.8.7-7 Q16 x86_64 2013-11-27 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules
Delegates: bzlib freetype jng jpeg ltdl png xml zlib

Installation

npm install -g image-divider

Usage

  • Put a configuration file like this

image-divider.js:

module.exports = {
  images: [{
    src: 'path/to/large.png',
    pos: [16, 32],
    size: [16, 16],
    dest: 'path/to/dest/icon-1.png'
  }, {
    src: 'path/to/large.png',
    pos: [16, 48],
    size: [16, 16],
    dest: 'foo/bar/dest/icon-2.png'
  }]
};
  • Execute a command
image-divider --conf path/to/image-divider.js
  • Then, two small images are created
$tree foo/bar/dest
foo/bar/dest
├── icon-1.png
└── icon-2.png

Note:

  • --conf, -c option
    • Set a path to configuration file
    • Use ./image-divider.js if it is not set

Keywords

command

FAQs

Package last updated on 22 Apr 2015

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