diff options
author | Bradley Taunt <bt@btxx.org> | 2024-06-08 13:43:37 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-06-08 13:43:37 -0400 |
commit | 16d28628aca9b2d356de31c319f5e7bc0f5b2b02 (patch) | |
tree | 11947abb71e38cbe75116871694a44c33d257763 /build/heif/index.html | |
parent | dcfb172704f3afb68a30425029ec834be2883274 (diff) |
Remove incorrectly generated files, fix up markdown articles
Diffstat (limited to 'build/heif/index.html')
-rw-r--r-- | build/heif/index.html | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/build/heif/index.html b/build/heif/index.html index 112398c..e8c89c3 100644 --- a/build/heif/index.html +++ b/build/heif/index.html @@ -3,11 +3,12 @@ <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="color-scheme" content="dark light"> <link rel="icon" href="data:,"> <title>Converting HEIF Images with macOS Automator</title> <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" /> <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" /> -<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style> +<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{background:rgba(0,0,0,0.1);border-left:4px solid;padding-left:5px;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style> </head> <nav> @@ -16,24 +17,16 @@ <main> <h1 id="converting-heif-images-with-macos-automator">Converting HEIF Images with macOS Automator</h1> - <p>2023-07-21</p> - <p>Often times when you save or export photos from iOS to iCloud they often render themselves into <code>heif</code> or <code>heic</code> formats. Both macOS and iOS have no problem working with these formats, but a lot of software programs will not even recognize these filetypes. The obvious step would just be to convert them via an application or online service, right?</p> - <p>Not so fast! Wouldn’t it be much cleaner if we could simply right-click our <code>heif</code> or <code>heic</code> files and convert them directly in Finder? Well, I’ve got some good news for you…</p> - <h2 id="basic-requirements">Basic Requirements</h2> - <ol> <li>You will need to have <a href="https://homebrew.sh">Homebrew</a> installed</li> <li>You will need to install the <code>libheif</code> package through Homebrew: <code>brew install libheif</code></li> </ol> - <h2 id="creating-our-custom-automator-script">Creating our custom Automator script</h2> - <p>For this example script we are going to convert the image to JPG format. You can freely change this to whatever format you wish (PNG, TIFF, etc.). We’re just keeping things basic for this tutorial. Don’t worry if you’ve never worked with Automator before because setting things up is incredibly simple.</p> - <ol> <li><p>Open the macOS Automator from the Applications folder</p></li> <li><p>Select <code>Quick Option</code> from the first prompt</p></li> @@ -43,21 +36,15 @@ <li><p>From the presented choices in the next pane, drag and drop <code>Run Shell Script</code> into the far right pane</p></li> <li><p>Set the area “Pass input” to <code>as arguments</code></p></li> <li><p>Enter the following code below as your script and type <code>⌘-S</code> to save (name it something like “Convert HEIC/HEIF to JPG”)</p> - <p>for f in “$@” do /opt/homebrew/bin/heif-convert “$f” “${f%.*}.jpg” done</p></li> </ol> - <h2 id="making-edits">Making Edits</h2> - <p>If you ever have the need to edit this script (for example, changing the default format to <code>png</code>), you will need to navigate to your <code>~/Library/Services</code> folder and open your custom heif Quick Action in the Automator application. </p> - <p>Simple as that. Happy converting!</p> - <p>If you’re interested, I also have some other Automator scripts available:</p> - <ul> <li><a href="/batch-webp-conversion/">Batch Converting Images to webp with macOS Automator</a></li> <li><a href="/macos-convert-to-html/">Convert Files to HTML with macOS Automator Quick Actions</a></li> |