npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@atombrenner/exif-reader

v2.0.0-rc.1

Published

A small EXIF image metadata reader

Downloads

1

Readme

exif-reader

A small EXIF image metadata reader.

Usage

npm install exif-reader
var exif = require('exif-reader');

// decode raw exif data from a buffer
var metadata = exif(buf);

Support is also built into jpg-stream for extracting EXIF data from JPEGs using this module.

Resulting properties are grouped as follows:

  • bigEndian: determines the endianness of the buffers (in case of non-ascii data)
  • Image: basic TIFF properties about the image
  • Thumbnail: basic TIFF properties about the embedded thumbnail
  • Photo: full exif data
  • GPSInfo: GPS/location data about the image
  • Iop: interoperability information

Not all of these properties will always be defined.

All standard Exif tags are supported.

Here is some example output:

{
  bigEndian: false,
  Image: {
    ImageWidth: 2448,
    ImageLength: 3264,
    Make: 'Google',
    Model: 'Pixel 4a (5G)',
    Orientation: 1,
    XResolution: 72,
    YResolution: 72,
    ResolutionUnit: 2,
    Software: 'HDR+ 1.0.520435816zp',
    DateTime: 2023-05-20T16:54:06.000Z,
    YCbCrPositioning: 1,
    ExifTag: 248,
    GPSTag: 988
  },
  Thumbnail: {
    ImageWidth: 256,
    ImageLength: 341,
    Compression: 6,
    Orientation: 1,
    XResolution: 72,
    YResolution: 72,
    ResolutionUnit: 2,
    JPEGInterchangeFormat: 1311,
    JPEGInterchangeFormatLength: 7512
  },
  Photo: {
    ExposureTime: 0.024458,
    FNumber: 2,
    ExposureProgram: 2,
    ISOSpeedRatings: 77,
    ExifVersion: <Buffer 30 32 33 32>,
    DateTimeOriginal: 2023-05-20T16:54:06.000Z,
    DateTimeDigitized: 2023-05-20T16:54:06.000Z,
    OffsetTime: '+02:00',
    OffsetTimeOriginal: '+02:00',
    OffsetTimeDigitized: '+02:00',
    ComponentsConfiguration: <Buffer 01 02 03 00>,
    ShutterSpeedValue: 5.35,
    ApertureValue: 2,
    BrightnessValue: 2.73,
    ExposureBiasValue: 0,
    MaxApertureValue: 2,
    SubjectDistance: 0.35,
    MeteringMode: 2,
    Flash: 16,
    FocalLength: 2.57,
    SubSecTime: '827',
    SubSecTimeOriginal: '827',
    SubSecTimeDigitized: '827',
    FlashpixVersion: <Buffer 30 31 30 30>,
    ColorSpace: 1,
    PixelXDimension: 2448,
    PixelYDimension: 3264,
    InteroperabilityTag: 958,
    SensingMethod: 2,
    SceneType: <Buffer 01>,
    CustomRendered: 1,
    ExposureMode: 0,
    WhiteBalance: 0,
    DigitalZoomRatio: 1.2,
    FocalLengthIn35mmFilm: 24,
    SceneCaptureType: 0,
    Contrast: 0,
    Saturation: 0,
    Sharpness: 0,
    SubjectDistanceRange: 1,
    LensMake: 'Google',
    LensModel: 'Pixel 4a (5G) front camera 2.57mm f/2.0',
    CompositeImage: 3
  },
  GPSInfo: {
    GPSLatitudeRef: 'N',
    GPSLatitude: [ 48, 5, 2.01 ],
    GPSLongitudeRef: 'E',
    GPSLongitude: [ 11, 37, 54.65 ],
    GPSAltitudeRef: 0,
    GPSAltitude: 596.1,
    GPSTimeStamp: [ 14, 53, 42 ],
    GPSDateStamp: '2023:05:20'
  },
  Iop: {
    InteroperabilityIndex: 'R98',
    InteroperabilityVersion: <Buffer 30 31 30 30>
  }
}

License

MIT