1.0.0 • Published 10 years ago

x-image-processing v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

x-image-processing

a simple image upload and processing module in node.js

and this image processing module under development but all time it usable

So hope this library help someone like me.

Any ideas are appreciated.

##Features

  • image crop
  • image resize
  • image upload

##Dependencies

By default:

##Installation

npm install x-image-processing --save

##How to use

this module use is so easy just require module and call function

require('x-image-processing'); xip.upload(,,);//image upload xip.resize(,,);//image resize xip.crop(,,,,);//image crop

###Example

Here i have give you a simple i think it will help

  var xip=require('x-image-processing');
  //raw file data(product_pic is file field name)
		var product_image=req.files.product_pic;
		xip.upload(product_image,'./public/images/product/',dt_join);
		xip.resize('./public/images/product/thumb/',100,100);
		xip.crop('./public/images/product/crop/',100,100,20,20);