Giter VIP home page Giter VIP logo

gulp-unretina's Introduction

gulp-unretina

Scales @2x images down to standard resolution using GraphicsMagick.

Install

Install with npm

npm install --save-dev gulp-unretina

GraphicsMagick

Make sure GraphicsMagick is installed on your system and properly set up in your PATH.

Ubuntu:

apt-get install graphicsmagick

Mac OS X (using Homebrew):

brew install graphicsmagick

Windows & others:

ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/windows/

Confirm that GraphicsMagick is properly set up by executing gm convert -help in a terminal.

Example

var gulp = require('gulp');
var unretina = require('gulp-unretina');

gulp.task('default', function () {
  gulp.src('[email protected]')
    .pipe(unretina())
    .pipe(gulp.dest('dist'));
});

API

unretina(options)

options.suffix

Type: String Default value: "@2x"

Sufix to be removed from filename. You can disable this function with false or empty "" values.

options.quality

Type: Number Default value: 1

Determines the output quality of the resized image. Ranges from 0 (really bad) to 1 (almost lossless). Only applies to jpg images.

Recommended modules

var parallel = require("concurrent-transform");
var os = require("os");

gulp.task("parallel", function () {
  gulp.src("src/**/*@2x.{jpg,png}")
    .pipe(parallel(
      unretina(),
      os.cpus().length
    ))
    .pipe(gulp.dest("dist"));
});
var changed = require("gulp-changed");

gulp.task("changed", function () {
  gulp.src("src/**/*@2x.{jpg,png}")
    .pipe(changed("dist"))
    .pipe(unretina())
    .pipe(gulp.dest("dist"));
});
var rename = require("gulp-rename");

gulp.task("suffix", function () {
  gulp.src("src/**/*@2x.{jpg,png}")
    .pipe(unretina())
    .pipe(rename(function (path) { path.basename += "-standard"; }))
    .pipe(gulp.dest("dist"));
});

License

MIT © Ramon Fritsch

Release History

  • 2014-12-17   v0.1.2   Updating README.md.
  • 2014-12-17   v0.1.1   Adding README.md and removing unused options.
  • 2014-12-17   v0.1.0   Initial release.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.