Socket
Socket
Sign inDemoInstall

image-utilities

Package Overview
Dependencies
123
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    image-utilities

A collection of useful image file JavaScript helper functions.


Version published
Weekly downloads
3
increased by200%
Maintainers
1
Install size
27.3 MB
Created
Weekly downloads
 

Readme

Source

Image Utilities

NPM version Coverage Status Known Vulnerabilities Downloads Install Size Contributors Pull Requests Welcome

A collection of useful image file JavaScript helper functions.

Node.js Usage

const imageUtilities = require("image-utilities");

imageUtilities.getImageInformation(
	"./data/image.png",
	function(error, info) {
		if(error) {
			return console.error(error);
		}

		return console.log(info);
	}
);

Installation

To install this module:

npm install image-utilities

Building

To build the distribution files for this module:

npm run build

Keywords

FAQs

Last updated on 27 Apr 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc