Removes EXIF information from JPG and PNG files
Uses go-exif to extract EXIF information and overwrites the EXIF region.
go install github.com/aakarim/remove-exif
#run against all in img folder
remove-exif
#run against single file
remove-exif img/jpg/11-tests.jpg
go get -u github.com/aakarim/remove-exif/exif_remove
import "github.com/aakarim/remove-exif/exif_remove"
noExifBytes, err := exifremove.Remove(imageBytes)