<?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: 4 Ways to Batch Convert Your PNG to JPG and Vice-Versa	</title>
	<atom:link href="https://www.tecmint.com/linux-image-conversion-tools/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/linux-image-conversion-tools/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Fri, 14 Jul 2023 07:38:36 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Coby Powers		</title>
		<link>https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-1694233</link>

		<dc:creator><![CDATA[Coby Powers]]></dc:creator>
		<pubDate>Sat, 01 Jan 2022 21:11:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23336#comment-1694233</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-1694232&quot;&gt;Coby Powers&lt;/a&gt;.

It should also be noted that this command does the opposite of what is mentioned in the article. I am converting JPGs to PNGs.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-1694232">Coby Powers</a>.</p>
<p>It should also be noted that this command does the opposite of what is mentioned in the article. I am converting JPGs to PNGs.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Coby Powers		</title>
		<link>https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-1694232</link>

		<dc:creator><![CDATA[Coby Powers]]></dc:creator>
		<pubDate>Sat, 01 Jan 2022 21:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23336#comment-1694232</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-895968&quot;&gt;U R SHit&lt;/a&gt;.

I made some modifications to the original command to support image files with spaces in them.

All it does is use the &quot;&lt;strong&gt;sed&lt;/strong&gt;&quot; command to replace all spaces with a backslash followed by a space.

&lt;code&gt;$ ls -1 *.jpg &#124; sed &#039;s/ /\\ /g&#039; &#124; xargs -n 1 bash -c &#039;convert &quot;$0&quot; &quot;${0%.jpg}.png&quot;&#039;&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-895968">U R SHit</a>.</p>
<p>I made some modifications to the original command to support image files with spaces in them.</p>
<p>All it does is use the &#8220;<strong>sed</strong>&#8221; command to replace all spaces with a backslash followed by a space.</p>
<p><code>$ ls -1 *.jpg | sed 's/ /\\ /g' | xargs -n 1 bash -c 'convert "$0" "${0%.jpg}.png"'</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-1396928</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Tue, 01 Dec 2020 06:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23336#comment-1396928</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-1395306&quot;&gt;Curious&lt;/a&gt;.

@Curious 

Oh, yes, it should work well. Thanks for sharing this.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-1395306">Curious</a>.</p>
<p>@Curious </p>
<p>Oh, yes, it should work well. Thanks for sharing this.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Curious		</title>
		<link>https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-1395306</link>

		<dc:creator><![CDATA[Curious]]></dc:creator>
		<pubDate>Fri, 27 Nov 2020 11:16:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23336#comment-1395306</guid>

					<description><![CDATA[Why use bash &lt;code&gt;-c&lt;/code&gt; for the for loop, and not just invoke a loop directly]]></description>
			<content:encoded><![CDATA[<p>Why use bash <code>-c</code> for the for loop, and not just invoke a loop directly</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-896198</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Wed, 21 Jun 2017 07:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23336#comment-896198</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-896014&quot;&gt;Christopher Lee&lt;/a&gt;.

@Christopher 

We will check out IrfanView. &quot;Keeping a master png (or tiff) file from which you make lossy jpegs only as required for particular purposes&quot;, is really worth mentioning, which we kind of forgot to point out in the article. 

Many thanks for the remarks.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-image-conversion-tools/comment-page-1/#comment-896014">Christopher Lee</a>.</p>
<p>@Christopher </p>
<p>We will check out IrfanView. &#8220;Keeping a master png (or tiff) file from which you make lossy jpegs only as required for particular purposes&#8221;, is really worth mentioning, which we kind of forgot to point out in the article. </p>
<p>Many thanks for the remarks.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
