<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Convert Images to WebP Format in Linux	</title>
	<atom:link href="https://www.tecmint.com/convert-images-to-webp-format-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/convert-images-to-webp-format-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 13 Jul 2023 19:21:38 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Zakhar		</title>
		<link>https://www.tecmint.com/convert-images-to-webp-format-in-linux/comment-page-1/#comment-1930626</link>

		<dc:creator><![CDATA[Zakhar]]></dc:creator>
		<pubDate>Thu, 15 Dec 2022 10:37:31 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28316#comment-1930626</guid>

					<description><![CDATA[All files are in a folder.

&lt;code&gt;# for f in ./*.png; do cwebp -q 80 $f -o ${f:0:`expr length &quot;$f&quot;`-3}webp; done&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>All files are in a folder.</p>
<p><code># for f in ./*.png; do cwebp -q 80 $f -o ${f:0:`expr length "$f"`-3}webp; done</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/convert-images-to-webp-format-in-linux/comment-page-1/#comment-1825222</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Tue, 14 Jun 2022 10:38:51 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28316#comment-1825222</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/convert-images-to-webp-format-in-linux/comment-page-1/#comment-1821887&quot;&gt;User&lt;/a&gt;.

@User

Many thanks for sharing this, we shall check it out.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/convert-images-to-webp-format-in-linux/comment-page-1/#comment-1821887">User</a>.</p>
<p>@User</p>
<p>Many thanks for sharing this, we shall check it out.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: User		</title>
		<link>https://www.tecmint.com/convert-images-to-webp-format-in-linux/comment-page-1/#comment-1821887</link>

		<dc:creator><![CDATA[User]]></dc:creator>
		<pubDate>Thu, 09 Jun 2022 12:37:09 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28316#comment-1821887</guid>

					<description><![CDATA[Thanks, here is an attempt to automate the conversion for all images in a dir - &lt;code&gt;https://github.com/slrslr/Miscellaneous-bash-scripts/blob/master/convertimagestowebp&lt;/code&gt;

It would be good if they allow &lt;code&gt;&quot;cwebp -q 80 *&quot;&lt;/code&gt; or &lt;code&gt;&quot;cwebp -q 80 ./ -o webps/&quot;&lt;/code&gt; - similar.]]></description>
			<content:encoded><![CDATA[<p>Thanks, here is an attempt to automate the conversion for all images in a dir &#8211; <code>https://github.com/slrslr/Miscellaneous-bash-scripts/blob/master/convertimagestowebp</code></p>
<p>It would be good if they allow <code>"cwebp -q 80 *"</code> or <code>"cwebp -q 80 ./ -o webps/"</code> &#8211; similar.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/convert-images-to-webp-format-in-linux/comment-page-1/#comment-1331752</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Mon, 04 May 2020 16:49:09 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28316#comment-1331752</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/convert-images-to-webp-format-in-linux/comment-page-1/#comment-1331336&quot;&gt;Bicyu&lt;/a&gt;.

@Bicyu

 Many thanks for sharing. We are grateful. We will check out kolourpaint.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/convert-images-to-webp-format-in-linux/comment-page-1/#comment-1331336">Bicyu</a>.</p>
<p>@Bicyu</p>
<p> Many thanks for sharing. We are grateful. We will check out kolourpaint.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bicyu		</title>
		<link>https://www.tecmint.com/convert-images-to-webp-format-in-linux/comment-page-1/#comment-1331336</link>

		<dc:creator><![CDATA[Bicyu]]></dc:creator>
		<pubDate>Sat, 02 May 2020 06:31:31 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28316#comment-1331336</guid>

					<description><![CDATA[Hello, obviously a lot of thought and time has gone into this post- and I know it is a little old now [2020] Thanks for that.

However, for those who want a quick and not so dirty Ubuntu solution, find &lt;strong&gt;kolourpaint&lt;/strong&gt; in the Ubuntu software folder, install it and select your image of choice.

Open with kolourpaint and select “save as”.

In the file drop-down select jpeg or png if you want to go FROM webp format.

Bingo! Job has done, easy, quick, no command line.

Works t’other way round too if you want to convert your png etc files to webp.

Maybe kolourpaint is also available for other Linux distros as well or your existing paint, image app might even do the same?

I hope this helps some people.
Bicyu.]]></description>
			<content:encoded><![CDATA[<p>Hello, obviously a lot of thought and time has gone into this post- and I know it is a little old now [2020] Thanks for that.</p>
<p>However, for those who want a quick and not so dirty Ubuntu solution, find <strong>kolourpaint</strong> in the Ubuntu software folder, install it and select your image of choice.</p>
<p>Open with kolourpaint and select “save as”.</p>
<p>In the file drop-down select jpeg or png if you want to go FROM webp format.</p>
<p>Bingo! Job has done, easy, quick, no command line.</p>
<p>Works t’other way round too if you want to convert your png etc files to webp.</p>
<p>Maybe kolourpaint is also available for other Linux distros as well or your existing paint, image app might even do the same?</p>
<p>I hope this helps some people.<br />
Bicyu.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
