1.0.1 • Published 9 years ago

isjpeg v1.0.1

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

isjpeg

is that file really (probably) a jpeg‽

Check the first 2 bytes of the file header to see if it's a JPEG

For when you just don't trust file extensions anymore.

Usage

module

npm install isjpeg

var isJpeg = require('isjpeg')

isJpeg('/path/to/mysterious/file', function (err, jpeg) {
  if (err) throw err
  if (jpeg) {
    console.log('file is totes JPEG.')
  } else {
    console.log('ceci n\'est pas une JPEG.')  
  }
})

command line

npm install -g isjpeg

isjpeg ~/Pictures/
/Users/oli/Pictures/MagrittePipe.jpg is JPEG

References

1.0.1

9 years ago

1.0.0

9 years ago