Refactored guide names
This commit is contained in:
parent
c45253f172
commit
7f95ef6820
27 changed files with 35 additions and 35 deletions
48
how-to-remove-exif-metadata-from-images-on-macos/README.md
Normal file
48
how-to-remove-exif-metadata-from-images-on-macos/README.md
Normal file
|
@ -0,0 +1,48 @@
|
|||
<!--
|
||||
Title: How to remove EXIF metadata from images on macOS
|
||||
Description: Learn how to remove EXIF metadata from images on macOS.
|
||||
Author: Sun Knudsen <https://github.com/sunknudsen>
|
||||
Contributors: Sun Knudsen <https://github.com/sunknudsen>
|
||||
Reviewers:
|
||||
Publication date: 2020-06-25T00:00:00.000Z
|
||||
-->
|
||||
|
||||
# How to remove EXIF metadata from images on macOS
|
||||
|
||||
[](https://www.youtube.com/watch?v=mVMGiMFGgsU "How to remove EXIF metadata from images on macOS - YouTube")
|
||||
|
||||
## Installation guide
|
||||
|
||||
### Step 1: install [Homebrew](https://brew.sh/)
|
||||
|
||||
```shell
|
||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
|
||||
```
|
||||
|
||||
### Step 2: disable analytics
|
||||
|
||||
```shell
|
||||
brew analytics off
|
||||
```
|
||||
|
||||
### Step 3: install [ExifTool](https://exiftool.org/)
|
||||
|
||||
```shell
|
||||
brew install exiftool
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Usage guide
|
||||
|
||||
### View EXIF metadata
|
||||
|
||||
```shell
|
||||
exiftool -n /path/to/image.jpg
|
||||
```
|
||||
|
||||
### Remove EXIF metadata
|
||||
|
||||
```shell
|
||||
exiftool -all= /path/to/image.jpg
|
||||
```
|
Binary file not shown.
After Width: | Height: | Size: 704 KiB |
Loading…
Add table
Add a link
Reference in a new issue