包详细信息

optipng

papandreou12.4kBSD-3-Clause4.2.0

The optipng utility as a readable/writable stream

optipng, png, image, optimization

自述文件

node-optipng

NPM version Build Status Coverage Status Dependency Status

The optipng command line utility as a readable/writable stream. This is handy for situations where you don't want to worry about writing the input to disc and reading the output afterwards.

If you don't have an optipng binary in your PATH, node-optipng will try to use one of the binaries provided by a href="https://github.com/yeoman/node-optipng-bin"the node-optipng-bin package.

The constructor optionally takes an array of command line options for the optipng binary:

var OptiPng = require('optipng'),
  myOptimizer = new OptiPng(['-o7']);

sourceStream.pipe(myOptimizer).pipe(destinationStream);

OptiPng as a web service:

var OptiPng = require('optipng'),
  http = require('http');

http
  .createServer(function (req, res) {
    if (req.headers['content-type'] === 'image/png') {
      res.writeHead(200, { 'Content-Type': 'image/png' });
      req.pipe(new OptiPng(['-o7'])).pipe(res);
    } else {
      res.writeHead(400);
      res.end('Feed me a PNG!');
    }
  })
  .listen(1337);

Installation

Make sure you have node.js and npm installed, then run:

npm install optipng

Releases

Changelog

License

3-clause BSD license -- see the LICENSE file for details.

更新日志

v4.2.0 (2022-09-07)

Pull requests

Commits to master

v4.1.0 (2022-06-02)

v4.0.0 (2022-05-05)

Pull requests

Commits to master

v3.0.0 (2020-11-22)

Pull requests

Commits to master

v2.2.0 (2020-07-22)

Pull requests

Commits to master

v2.1.0 (2019-05-27)

Pull requests

Commits to master

v2.0.0 (2018-11-16)

Pull requests

Commits to master

v1.1.0 (2017-04-27)

v1.0.0 (2016-03-31)

v0.3.1 (2015-07-29)

v0.3.0 (2015-07-29)

v0.2.1 (2015-06-26)

Pull requests

Commits to master

v0.2.0 (2015-06-26)

Pull requests

Commits to master

v0.1.1 (2014-09-22)

v0.1.0 (2014-09-22)

v0.0.6

v0.0.5 (2014-03-25)

v0.0.4

v0.0.3

v0.0.2

v0.0.1