> BUT.... the method is tedious and takes a lot of time for fairly
> defined steps: [create DIR's, move 600MB Raw's into RAW, extract jpg to
> JPG, copy THM->Thumbs, rename THM -> JPG, write CD]. Having a strong
> background in Java programming, I was thinking to extend Ant or even the
> JAlbum framework to do the work for me and even generate a HTML
> presentation in case I have to give a disk to somebody.
Having compiled parse.c (gcc -o parse_jpeg parse.c) and placed "parse_jpeg" in
your path
Create this file mass_create and make it executable and place it in your path:
#!/bin/bash
## mass_create - Seperates formats from RAW Canon output
## Copyright (C) 2003 Jonathan Lim <[EMAIL PROTECTED]>
# create dirs
mkdir RAW
mkdir JPG
mkdir THUMBS
for file
do
filename=${file%.CRW}
# move 600MB RAW to Raw
cp "${filename}.CRW" RAW
# Extract JPG
parse_jpeg $file
cp ${filename}.CRW.thumb JPG/${filename}.JPG
# Copy THM to Thumbs
cp ${filename}.THM THUMBS/${filename}.JPG
done
## EOF
You can run this from the directory containing your images:
mass_create *.CRW
HTH
Jon
*
****
*******
***********************************************************
* For list instructions, including unsubscribe, see:
* http://www.a1.nl/phomepag/markerink/eos_list.htm
***********************************************************