Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 815 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 815 Bytes

Remove EXIF

Go GoDoc

Removes EXIF information from JPG and PNG files

Uses go-exif to extract EXIF information and overwrites the EXIF region.

Tool

Installation into $PATH

go install github.com/aakarim/remove-exif

Example Usage

#run against all in img folder
remove-exif

#run against single file
remove-exif img/jpg/11-tests.jpg

Library

Installation

go get -u github.com/aakarim/remove-exif/exif_remove

Example Usage

import 	"github.com/aakarim/remove-exif/exif_remove"

noExifBytes, err := exifremove.Remove(imageBytes)