0.10.0 • Published 10 years ago

gulp-exif v0.10.0

Weekly downloads
12
License
-
Repository
github
Last release
10 years ago

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

0.10.0

10 years ago

0.9.2

10 years ago

0.9.0

10 years ago