New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-lwip

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-lwip

Gulp plugin for image manipulation with lwip

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-93.75%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-lwip

Gulp.js plugin wrapping lwip image manipulation library.

Installation

You'll probably use this plugin together with gulp.js as build tool/task runner:

npm install --save-dev gulp-lwip

Notes

The strong point of lwip is that it allows to manipulate images without external dependencies like ImageMagick or similar. However, this doesn't mean you won't need anything else: during the installation, source files will be compiled using node-gyp, which means Python and a C++ compiler will be used. In particular, Windows installations will need Visual Studio 2013 at least.

See node-gyp's page for more informations.

Usage

var lwip = require("gulp-lwip");

gulp.src("./src/images/*.jpg")
    .pipe(lwip
        .scale(.5)
        .exportAs("png")
    )
    .pipe(gulp.dest("./assets/img/"));

gulp-lwip's usage is similar to lwip's in batch mode, chaining the desired filters one after the other, together with their parameters. Basically every processing filter can be used like that (resize, blur, saturate and so on). paste is unsupported at the moment. Check lwip's documentation to further informations.

Getters like width or getPixel are, of course, not supported, while writeFile and toBuffer are replaced by exportAs(format, parameters). format can be one of the formats accepted by lwip (i.e., "jpg", "png" or "gif"), or null, meaning that the original format is used; the optional argument parameters is a plain object meant to provide specific parameters when outputting the image file. exportAs might not be the last method in the call chain.

Tests

Tests are performed using mocha. Execute npm run test after installing the development dependencies, or just mocha if you have a compatible version installed globally.

License

MIT. See LICENSE for details.

Keywords

FAQs

Package last updated on 20 Jun 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

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