52 lines
1.1 KiB
Markdown
Raw Normal View History

2020-06-25 13:56:31 -04:00
<!--
2020-10-02 09:42:15 -04:00
Title: How to remove EXIF metadata from images on macOS
Description: Learn how to remove EXIF metadata from images on macOS.
2020-06-25 13:56:31 -04:00
Author: Sun Knudsen <https://github.com/sunknudsen>
Contributors: Sun Knudsen <https://github.com/sunknudsen>
2020-09-10 10:07:07 -04:00
Reviewers:
2020-06-25 13:56:31 -04:00
Publication date: 2020-06-25T00:00:00.000Z
Listed: true
2020-06-25 13:56:31 -04:00
-->
2020-10-02 09:42:15 -04:00
# How to remove EXIF metadata from images on macOS
2020-06-25 13:56:31 -04:00
2020-10-02 09:42:15 -04:00
[![How to remove EXIF metadata from images on macOS - YouTube](how-to-remove-exif-metadata-from-images-on-macos.png)](https://www.youtube.com/watch?v=mVMGiMFGgsU "How to remove EXIF metadata from images on macOS - YouTube")
2020-07-09 19:55:54 -04:00
2020-06-25 13:56:31 -04:00
## Installation guide
2020-08-10 19:35:31 -04:00
### Step 1: install [Homebrew](https://brew.sh/)
2020-06-25 13:56:31 -04:00
```shell
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
```
2020-08-10 19:35:31 -04:00
### Step 2: disable analytics
2020-06-25 13:56:31 -04:00
```shell
brew analytics off
```
2020-08-10 19:35:31 -04:00
### Step 3: install [ExifTool](https://exiftool.org/)
2020-06-25 13:56:31 -04:00
```shell
brew install exiftool
```
2020-12-03 06:29:52 -05:00
👍
2020-06-25 13:56:31 -04:00
---
## Usage guide
2020-08-10 19:35:31 -04:00
### View EXIF metadata
2020-06-25 13:56:31 -04:00
```shell
exiftool -n /path/to/image.jpg
```
2020-08-10 19:35:31 -04:00
### Remove EXIF metadata
2020-06-25 13:56:31 -04:00
```shell
exiftool -all= /path/to/image.jpg
```