Skip to content

Extract EXIF data from photographs

License

Notifications You must be signed in to change notification settings

shimonenator/gulp-exif

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Extract EXIF data from photographs

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •