Hi there, On Mon, 06 Aug 2012 12:57:00 -0400 John Ackermann N8UR <[email protected]> wrote:
> <A HREF="image.big"><IMG SRC="image.small"></A> > But that's extra work that I haven't gotten around to automating yet, > so I thought I'd try using the HTML size options: > <IMG SRC="image.big" WIDTH=50% HEIGHT=50%> It's easy to resize pictures automatically if you are a Linux user using imagemagick's convert tool: 1) Resize one pic: convert pic.jpg -resize 50% small-pic.jpg 2) Resize many pics in one directory: for F in *jpg; do convert $F -resize 50% small-$F; done Hope it helps O:-) -- Pablo Garaizar Sagarminaga Universidad de Deusto Avda. de las Universidades 24 48007 Bilbao - Spain Phone: +34-94-4139000 Ext 2512 Fax: +34-94-4139101 _______________________________________________ time-nuts mailing list -- [email protected] To unsubscribe, go to https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts and follow the instructions there.
