identify-verbose-parser

1.2.0 • Public • Published

Usage

Send in stdout from imagemagicks identify -verbose

  var exec = require('child_process').exec
  var filepath = "/path/to/file"
  var identifyParser = require("identify-verbose-parser")

  exec(`identify -verbose ${filepath}`, function(err, res) {
    if(err) throw err;

    var data = identifyParser(res)
    console.log(data)
  })

Returns a parsed result :)

Readme

Keywords

none

Package Sidebar

Install

npm i identify-verbose-parser

Weekly Downloads

1

Version

1.2.0

License

MIT

Last publish

Collaborators

  • snordrapidimages