Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

image-convert

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

image-convert

convert image to different format like gif2jpg jpg2png also manage the quality & size

  • 0.1.309
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.2K
increased by357.04%
Maintainers
1
Weekly downloads
 
Created
Source

image-convert

convert image to different format like gif2jpg jpg2png also manage the quality & size

npm install image-convert --save

Usage

let imgConvert = require('image-convert').fromURL;
imgConvert({
	url:<url>,
	quality: <quality[0..100]>,
	output_format:<output_format>,
	size: <size{integer}>},function(err,res){
	if(!err)
		console.log(res);//img buffer
})

Example

let imgConvert = require('image-convert').fromURL;
imgConvert({
	url:"https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Rotating_earth_(large).gif/200px-Rotating_earth_(large).gif",
	quality: 80,//default 100
	output_format:"jpg",//default jpg
	size: 300//defualt original
},function(err,res){
	if(!err)
		console.log(res);//img buffer
})

License

MIT

Keywords

FAQs

Package last updated on 09 Jan 2017

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc