Re: making thumbnails

2015-04-30 Thread Jonathan Dowland
On Tue, Apr 28, 2015 at 11:48:25AM -0500, Kent West wrote: > I use igal2. A good suggestion, as you also get the HTML stuff that you may also want. There are a few igal-forks and similar projects, my personal preference is for lazygal (package: also lazygal) which can be run iteratively without r

Re: making thumbnails

2015-04-30 Thread Gene Heskett
On Thursday 30 April 2015 03:28:13 Alex Mestiashvili wrote: > On 04/28/2015 06:42 PM, Bob Proulx wrote: > > Steve Greig wrote: > >> I have about 60 large jpg files in a directory. They are almost all > >> over 2MB in size. I want to put them on the internet but wanted to > >> make a thumbnail versi

Re: making thumbnails

2015-04-30 Thread Alex Mestiashvili
On 04/28/2015 06:42 PM, Bob Proulx wrote: Steve Greig wrote: I have about 60 large jpg files in a directory. They are almost all over 2MB in size. I want to put them on the internet but wanted to make a thumbnail version and a small version (about 75KB) of each one so the web page does not take

Re: making thumbnails

2015-04-29 Thread Igor Cicimov
http://www.imagemagick.org/script/mogrify.php On 29/04/2015 2:28 AM, "Steve Greig" wrote: > I have about 60 large jpg files in a directory. They are almost all over > 2MB in size. I want to put them on the internet but wanted to make a > thumbnail version and a small version (about 75KB) of each

Re: making thumbnails

2015-04-28 Thread James
I wrote this script: if [[ ! -z $1 ]]; then echo "One picture" convert -resize 25% "$1" "$1"_small else echo "All pictures" for fullfile in *.[Jj][Pp][Gg]; do echo "Making thumbnail" filename=$(basename "$fullfile") extension="${filename##*.}" filena

Re: making thumbnails

2015-04-28 Thread Tim Kelley
You could use convert to degrade the quality rather than size, so the page won't be moving about when loading. Tim Kelley On Tue, Apr 28, 2015 at 12:14 PM, Siard wrote: > Steve Greig wrote: > > I have about 60 large jpg files in a directory. They are almost all > > over 2MB in size. I want to

Re: making thumbnails

2015-04-28 Thread Siard
Steve Greig wrote: > I have about 60 large jpg files in a directory. They are almost all > over 2MB in size. I want to put them on the internet but wanted to > make a thumbnail version and a small version (about 75KB) of each one > so the web page does not take too long to load. Normally I just ope

Re: making thumbnails

2015-04-28 Thread Kent West
On 04/28/2015 11:27 AM, Steve Greig wrote: I have about 60 large jpg files in a directory. They are almost all over 2MB in size. I want to put them on the internet but wanted to make a thumbnail version and a small version (about 75KB) of each one so the web page does not take too long to load.

Re: making thumbnails

2015-04-28 Thread Bob Proulx
Steve Greig wrote: > I have about 60 large jpg files in a directory. They are almost all over > 2MB in size. I want to put them on the internet but wanted to make a > thumbnail version and a small version (about 75KB) of each one so the web > page does not take too long to load. Off the top of my

Re: making thumbnails

2001-03-03 Thread Erdmut Pfeifer
On Sat, Mar 03, 2001 at 05:58:48PM -0500, Michael P. Soulier wrote: > On Sat, Mar 03, 2001 at 04:32:57PM -0500, Michael P. Soulier wrote: > > Hey people. Is there an easy way to make thumbnails for large numbers of > > images? I'm thinking of Image Magick, but the mogrify -geometry argument > >

Re: making thumbnails

2001-03-03 Thread Michael P. Soulier
On Sat, Mar 03, 2001 at 04:32:57PM -0500, Michael P. Soulier wrote: > Hey people. Is there an easy way to make thumbnails for large numbers of > images? I'm thinking of Image Magick, but the mogrify -geometry argument > doesn't maintain the aspect ratio. Oh wait, it _does_ maintain the as

Re: making thumbnails

2001-03-03 Thread RAccess
On Sat, 3 Mar 2001, Michael P. Soulier wrote: > Hey people. Is there an easy way to make thumbnails for large numbers of > images? I'm thinking of Image Magick, but the mogrify -geometry argument > doesn't maintain the aspect ratio. > > Mike > > -- > Michael P. Soulier <[EMAIL PROTECTED]>

Re: making thumbnails

2001-03-03 Thread Bud Rogers
On Saturday 03 March 2001 15:32, Michael P. Soulier wrote: > Hey people. Is there an easy way to make thumbnails for large > numbers of images? I'm thinking of Image Magick, but the mogrify > -geometry argument doesn't maintain the aspect ratio. I used to have a python module that would genera