1.0.2 • Published 9 years ago

gulp-doc2json v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
9 years ago

gulp-doc2json

Converts ppt/pdf to images in png/jpg format in a folder with same name as document and creates a json of those images in same folder

Requirements

doc2json requires the following software to be installed:

Installation

npm install gulp-doc2json

Example to convert test.pdf to png and store folder with images and json in dist folder in GULP

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

gulp.task('doc2json', function(callback) {
gulp.src('test.pdf')
    .pipe(doc2json({
        format: 'png',
        dest: 'dist'
    }))
});