aboutsummaryrefslogtreecommitdiff
path: root/build/batch-webp-conversion/index.html
blob: 839973dfec06ff733411dfdcdf730d9ceb7caa00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<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>
</head>

<nav>
	<a href="#menu">Menu &darr;</a>
</nav>

<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&#47;UI designer is spent exporting and&#47;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&#8217;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&#47;speed&#47;webp&#47;download</a> </p>

<ul>
<li><em>Look for the &#8220;Download for macOS link&#8221;</em></li>
</ul></li>
<li><p>Next we will need to copy the <code>cwebp</code> folder to our <code>&#47;usr&#47;local&#47;bin</code> directory:</p>

<ul>
<li>Open macOS Terminal</li>
<li>Run <code>sudo cp &#47;Downloads&#47;libwebp-1.2.1-mac-10.15&#47;bin&#47;cwebp &#47;usr&#47;local&#47;bin</code></li>
<li><em>Note:</em> if the <code>&#47;usr&#47;local&#47;bin</code> directory doesn&#8217;t exist, simply create it by running: <code>sudo cd &#47;usr&#47;local &#38;&#38; 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>
<li><p>Set &#8220;Workflow receives current&#8221; to <code>image files</code></p></li>
<li><p>Set the label &#8220;in&#8221; to <code>Finder</code></p></li>
<li><p>From the left pane, select &#8220;Library &#62; Utilities&#8221;</p></li>
<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 &#8220;Pass input&#8221; 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 &#8220;Convert to webp&#8221;)</p>

<p>for f in &#8220;$@&#8221;
do
&#47;usr&#47;local&#47;bin&#47;cwebp -q 85 &#8220;$f&#8221; -o &#8220;${f%.*}.webp&#8221;
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>~&#47;Library&#47;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&#39;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 &#8220;Open in Finder&#8221; in the error message prompt</li>
<li>Double-click on the <code>cwebp</code> utility to open in Terminal</li>
<li>You&#8217;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>
    <ul id="menu">
        <li><a href="/">Home</a></li>
        <li><a href="/projects">Projects</a></li>
        <li><a href="/uses">Uses</a></li>
        <li><a href="/wiki">Wiki</a></li>
        <li><a href="/resume">Resume</a></li>
        <li><a href="/colophon">Colophon</a></li>
        <li><a href="/now">Now</a></li>
        <li><a href="/donate">Donate</a></li>
        <li><a href="/atom.xml">RSS</a></li>
        <li><a href="#top">&uarr; Top of the page</a></li>
    </ul>
    <small>
        Built with <a href="https://git.sr.ht/~bt/barf">barf</a>. <br>
        Maintained with ♥ for the web. <br>
        Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
        The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
    </small>
</footer>