[Rawstudio-users] Transferring EXIF to exported JPEG images
David Sharp
whereami at gmail.com
Thu Apr 17 02:52:52 CEST 2008
ah, thanks for the pointer to exiftool. I have been (mildly) annoyed
that the exported jpegs have no exif data.
On Mon, Apr 14, 2008 at 11:09 AM, Jeff <jeff at ourexchange.net> wrote:
> Has anyone been working on automating transfer of EXIF data to the
> exported JPEG images coming out of rawstudio?
>
> My current photo processing workflow is:
> 1) Take pictures
> 2) Drop all raw files onto machine in datestamped directory
> 3) Run rawstudio and open new directory
> 4) Process all photos
> 5) Run exif-to-exports script (seen below)
>
> I'd love to cut out #5.
>
> Here's that export script, run from the folder containing the CR2 raw images:
>
> #!/bin/bash
>
> if [ ! -d ./exports ]; then
> echo "Must be run with an existing exports directory!"
> exit 1
> fi
>
> for i in exports/*.jpg; do
> j=$(basename "$i" | sed -e 's/_01\.jpg/.CR2/g;' | sed -e
> 's/_01\.\.jpg//g;')
> echo "$j -> $i"
> exiftool -tagsfromfile $j $i
> rm ${i}_original -vf
> done
>
> Thanks,
> Jeff
>
> _______________________________________________
> Rawstudio-users mailing list
> Rawstudio-users at rawstudio.org
> http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-users
>
More information about the Rawstudio-users
mailing list