<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Guguweb - jpg</title><link href="https://www.guguweb.com/" rel="alternate"></link><link href="https://www.guguweb.com/feeds/jpg.atom.xml" rel="self"></link><id>https://www.guguweb.com/</id><updated>2022-01-04T17:32:02+01:00</updated><subtitle>Freelance developer and sysadmin</subtitle><entry><title>Batch resize JPEG images with maximum resolution and size</title><link href="https://www.guguweb.com/2016/08/01/batch-resize-jpeg-images-with-maximum-resolution-and-size/" rel="alternate"></link><published>2016-08-01T13:08:40+00:00</published><updated>2022-01-04T17:32:02+01:00</updated><author><name>Augusto Destrero</name></author><id>tag:www.guguweb.com,2016-08-01:/2016/08/01/batch-resize-jpeg-images-with-maximum-resolution-and-size/</id><summary type="html">&lt;p&gt;Just discovered a quick and dirty way to resize a bunch of jpeg files to a maximum resolution and size:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;mogrify -resize 1024x1024 -strip -define jpeg:extent=200kb *.jpg
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;This command will resize all jpg images in the current directory with a maximum resolution of 1024px for each side (maintaining …&lt;/p&gt;</summary><content type="html">&lt;p&gt;Just discovered a quick and dirty way to resize a bunch of jpeg files to a maximum resolution and size:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;code&gt;mogrify -resize 1024x1024 -strip -define jpeg:extent=200kb *.jpg
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;This command will resize all jpg images in the current directory with a maximum resolution of 1024px for each side (maintaining aspect ratio) and a maximum size of 200kb. This will also strip all metadata from the jpg files.&lt;/p&gt;</content><category term="snippets"></category><category term="imagemagick"></category><category term="jpg"></category><category term="mogrify"></category></entry></feed>