Created
August 7, 2018 05:51
-
-
Save danmaq/1efa567abc08a6fd86e3aa5b33573643 to your computer and use it in GitHub Desktop.
Convert HEIF(.heic) format photos to JPEG(.jpg) format.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
brew install libheif | |
# The “heif-convert” command is included in the libheif package. | |
heif-convert image.heic image.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment