diff options
Diffstat (limited to 'build/batch-webp-conversion')
-rw-r--r-- | build/batch-webp-conversion/index.html | 29 |
1 files changed, 4 insertions, 25 deletions
diff --git a/build/batch-webp-conversion/index.html b/build/batch-webp-conversion/index.html index 839973d..5dd50b2 100644 --- a/build/batch-webp-conversion/index.html +++ b/build/batch-webp-conversion/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>Batch Converting Images to webp 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,34 +17,24 @@ <main> <h1 id="batch-converting-images-to-webp-with-macos-automator">Batch Converting Images to webp with macOS Automator</h1> - <p>2021-10-15</p> - <p>A great deal of my time working as a web/UI designer is spent exporting and/or converting images for software products and websites. Although a lot of modern applications can render image conversions at build time, a custom conversion is sometimes requested for an image to be set as <code>webp</code>.</p> - <p>You <em>could</em> download one of the many native apps from the Mac App Store to do this for you - but why not create your own script and run it with a simple right-click directly inside Finder? <strong>Let’s do just that!</strong></p> - <h2 id="basic-requirements">Basic requirements</h2> - <p><strong>Important!</strong>: As of this time of writing, the official <code>libwebp</code> package release is <em>libwebp-1.2.1-mac-10.15</em>. If this has been updated since then, change the command below to match that of the proper release version.</p> - <ol> -<li><p>First you will need to download the <code>libwebp</code> package to your Downloads folder: <a href="https://developers.google.com/speed/webp/download">developers.google.com/speed/webp/download</a> </p> - +<li>First you will need to download the <code>libwebp</code> package to your Downloads folder: <a href="https://developers.google.com/speed/webp/download">developers.google.com/speed/webp/download</a> <ul> <li><em>Look for the “Download for macOS link”</em></li> </ul></li> -<li><p>Next we will need to copy the <code>cwebp</code> folder to our <code>/usr/local/bin</code> directory:</p> - +<li>Next we will need to copy the <code>cwebp</code> folder to our <code>/usr/local/bin</code> directory: <ul> <li>Open macOS Terminal</li> <li>Run <code>sudo cp /Downloads/libwebp-1.2.1-mac-10.15/bin/cwebp /usr/local/bin</code></li> <li><em>Note:</em> if the <code>/usr/local/bin</code> directory doesn’t exist, simply create it by running: <code>sudo cd /usr/local && mkdir bin</code></li> </ul></li> </ol> - <h2 id="creating-our-custom-automator-script">Creating our custom Automator script</h2> - <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> @@ -53,38 +44,26 @@ <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 to webp”)</p> - <p>for f in “$@” do /usr/local/bin/cwebp -q 85 “$f” -o “${f%.*}.webp” done</p></li> </ol> - <p>For visual reference, it should look something like this:</p> - <p>And when right-clicking an image file in the Finder window, it should now give you the option to convert:</p> - <h2 id="making-edits-to-your-script">Making edits to your script</h2> - <p>If you ever have the need to edit this script (for example, changing the default <code>85</code> quality parameter), you will need to navigate to your <code>~/Library/Services</code> folder and open your custom webp Quick Action in the Automator application. </p> - <p>Simple as that!</p> - <h2 id="possible-hiccups">Possible Hiccups</h2> - <p>I was contacted by the very helpful <a href="https://kevq.uk">Kev Quirk</a> about a minor problem he encountered while following this tutorial. When trying to run <code>cwebp</code> he received the following error message:</p> - <pre><code>cwebp cannot be opened because it's from an unverified developer </code></pre> - <p>Doing the next steps seemed to have fixed this issue for him:</p> - <ol> <li>Click on the “Open in Finder” in the error message prompt</li> <li>Double-click on the <code>cwebp</code> utility to open in Terminal</li> <li>You’ll then be prompted with a pop-up asking if you wish to execute</li> </ol> - <p>After following these steps, the issue should be resolved.</p> <footer role="contentinfo"> <h2>Menu Navigation</h2> |