<div dir="ltr">thanks <b>Brian</b></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jan 1, 2016 at 2:33 PM, Brian Cluff <span dir="ltr"><<a href="mailto:brian@snaptek.com" target="_blank">brian@snaptek.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Take a look at the command "mogrify".  It's a command that comes with imagmagic (convert) and generally takes the same options as convert, but it made to do bulk converstion, so that you don't need to have a for loop around your command.<br>
Just be aware that it will usually replace your images with the converted versions, so make sure you test things out on backups.<span class="HOEnZb"><font color="#888888"><br>
<br>
Brian Cluff</font></span><span class="im HOEnZb"><br>
<br>
On 12/31/2015 02:34 PM, Matt Graham wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Dec 31, 2015 1:57 PM, "Michael Havens" <<a href="mailto:bmike1@gmail.com" target="_blank">bmike1@gmail.com</a>> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Is there a way to scale a bunch of pictures down to the same size<br>
with GIMP?<br>
</blockquote></blockquote>
<br>
Probably, but it'd be a lot more of a pain to do that than to do what<br>
sean suggested.<br>
<br>
On 2015-12-31 14:07, sean wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Use ImageMagick instead - it's designed for this and is quite powerful.<br>
</blockquote>
<br>
To expand on what sean wrote:<br>
<br>
for FILE in *.jpg ; do<br>
    NEWFILE=`echo "$FILE" | sed -e 's/.jpg$/_resized.jpg/'`<br>
    convert "$FILE" -resize 50% "$NEWFILE"<br>
    done<br>
<br>
...will take all the .jpg files in the current dir and write out new<br>
files named (original filename)_resized.jpg which have their X and Y<br>
dimensions reduced by 50%.  The original files will still be there.  The<br>
geometry specification in ImageMagick is powerful, so it's more<br>
complicated than you may expect.<br>
<a href="http://www.imagemagick.org/script/command-line-processing.php#geometry" rel="noreferrer" target="_blank">http://www.imagemagick.org/script/command-line-processing.php#geometry</a><br>
for all the things you can do with it.<br>
<br>
</blockquote>
<br></span><div class="HOEnZb"><div class="h5">
---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org" target="_blank">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" rel="noreferrer" target="_blank">http://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><span style="font-size:12.8000001907349px">:-)~MIKE~(-:</span><br></div></div></div></div></div>
</div>