Silver_2000
10-12-2002, 11:38 PM
These sites are taking up a great deal of web space. And we are running out of it.... So Today I started mogrifying (http://www.imagemagick.org/www/mogrify.html) many of the pictures to save space.
The result of the mogrification will be smaller pictures and higher JPG compression.
If you have any favorites - Escpecially if the are 2000 or 2001 pictures you better get them now....
We also need to take up a collection to pay Logan the $175 he charged me to automate the mogrification ;)
#!/bin/bash
for foo in $(find . -name *.jpg -print);do
echo "Processing file $foo..."
mogrify -geometry x375 -quality 60 +profile "*" $foo
done
I will likely start removing the 2000 and 2001 events and pictures soon. I dont think many people look at them and we need to make space for next year.
Doug
The result of the mogrification will be smaller pictures and higher JPG compression.
If you have any favorites - Escpecially if the are 2000 or 2001 pictures you better get them now....
We also need to take up a collection to pay Logan the $175 he charged me to automate the mogrification ;)
#!/bin/bash
for foo in $(find . -name *.jpg -print);do
echo "Processing file $foo..."
mogrify -geometry x375 -quality 60 +profile "*" $foo
done
I will likely start removing the 2000 and 2001 events and pictures soon. I dont think many people look at them and we need to make space for next year.
Doug