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
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
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
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
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
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
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
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.
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
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
> >
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
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]>
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
13 matches
Mail list logo