New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

exif-be-gone

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exif-be-gone

Remove EXIF data from your image files.

1.2.0
Source
npm
Version published
Weekly downloads
5.8K
-1.79%
Maintainers
1
Weekly downloads
 
Created
Source

Exif be gone

Stream transformer to remove data that could be potentially private.

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

Installation

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

Example usage

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

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

toStream(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]

FAQs

Package last updated on 20 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts