1.5.1 • Published 11 months ago

exif-be-gone v1.5.1

Weekly downloads
209
License
ISC
Repository
github
Last release
11 months ago

Exif be gone

Zero dependency stream transformer to remove data that could be potentially private.

For jpegs and tiffs, it currently looks for data in the app1 section that is either exif, xmp, or FLIR and removes it from the stream.

For png, it looks for tIME, iTXt, tEXt, zTXt, eXIf and dSIG chunks and removes those.

Installation

Use npm install exif-be-gone to install this package.

Example usage

const ExifTransformer = require('exif-be-gone')
const fs = require("fs")

const reader = fs.createReadStream('Canon_40D.jpg')
const writer = fs.createWriteStream('out.jpg')

reader.pipe(new ExifTransformer()).pipe(writer)

There is also a command-line version that is installed that can be run via:

$ exif-be-gone [INPUT] [OUTPUT]

1.5.1

11 months ago

1.5.0

12 months ago

1.4.1

2 years ago

1.4.0

2 years ago

1.3.2

3 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

7 years ago