Editing Notes

From Seychelles
Jump to: navigation, search

Warning: The database has been locked for maintenance, so you will not be able to save your edits right now. You may wish to copy and paste your text into a text file and save it for later.

The system administrator who locked it offered this explanation: This wiki is closed for editing until further notice.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
 +
 
<pre>
 
<pre>
 
for i in *.jpg
 
for i in *.jpg
Line 11: Line 12:
 
do convert -quality 75 -geometry 100x78! $i /tmp/beach_processed/`basename $i .jpg`_thumb.jpg;
 
do convert -quality 75 -geometry 100x78! $i /tmp/beach_processed/`basename $i .jpg`_thumb.jpg;
 
done
 
done
 
Create headers:
 
 
First run in images:
 
 
for i in *.jpg
 
do convert -quality 95 -geometry x800 $i /tmp/beach_originals/`basename $i .jpg`.jpg;
 
done
 
 
Thereafter:
 
 
#!/bin/bash
 
 
PROCESSED=/tmp/beach_processed
 
 
for I in *.jpg; do
 
echo -n "$I..."
 
convert -quality 85 -crop 800x350+0+0 -gravity Center $I ${PROCESSED}/${I}
 
echo cropped
 
done
 
 
 
Thereafter renamed all including header string:
 
for f in *.jpg; do mv $f `basename $f .jpg`_header.jpg; done;
 
  
 
</pre>
 
</pre>

Please note that all contributions to Seychelles may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Seychelles:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)