0.0.4 • Published 10 years ago
image-transformer v0.0.4
Image Transformer
Command line utility to transform images using GraphicsMagick.
Installation
$ npm install -g image-transformerUsage
In the command line
$ image-transformer files outputDir -- transf1=val1 transf=val2 ...The ouput files will be in the form ~/images/output/[name]-[transformation][value].[ext]
Example:
$ image-transformer ~/images/*.jpg ~/images/output -- resize=100Note: You can use glob to select files.
Work in progress
For now, I only tested it with transformations that requires only one parameter. In this case, resize only accepts the width parameter. In the future, it should be able to accept multiple params.
Also, the transformations are not in series, meaning that only one transformation is done per file at a time.