gulp-exif

0.10.0 • Public • Published

gulp-exif

Extract EXIF data from photographs

Table of Contents

Installation

$ npm install --save-dev gulp-exif

Usage

gulp-exif adds exif property to the file as it is returned by the node-exif.

var gulp = require('gulp');
var exif = require('gulp-exif');
 
gulp.task('default', function () {
    return gulp.src('src/**.jpg')
        .pipe(exif())
        .pipe(/* custom rename or filter process */)
        .pipe(gulp.dest('rename-dest'));
});

ToDo

  • Proper error handling
  • Proper Stream and Buffer handling
  • Test coverage

Licence

MIT © Shimon Schwartz

Readme

Keywords

Package Sidebar

Install

npm i gulp-exif

Weekly Downloads

4

Version

0.10.0

License

none

Last publish

Collaborators

  • shimon