A picture is worth a thousand words. What if that photograph doesn’t tell the whole story? Interetsting analysis of how a photo can convey a publisher’s bias.
Tag Archives: Photography
Little Channel Mixer Tip – enhanced green grass
- Load up an image with a lot of greenery.
- Fire up the Channel Mixer. I don’t know where it is in Photoshop, but in the GIMP it’s in Filters->Colors->Channel Mixer.
- Slide the green bar down a small bit and move the blue bar up a bit. Values of 100, -33, 47 worked for me.
- Green grass looks much more vibrant and healthy!
Converting RAW files to Jpeg, Nautilus Style
Further to my previous attempts to convert RAW files to Jpeg, here’s a Nautilus script based on this script. How do you use it? The g-scripts FAQ has more, although in Ubuntu I had to copy the script into ~/.gnome2/nautilus-scripts/
This script uses “Zenity” to display a nice progress bar while the conversion takes place.
#!/bin/bash
(while [ $# -gt 0 ]; do
dcraw -c -a -n -h $1 | ppmtojpeg > `basename $1 cr2`jpg
echo $1
shift
done) | zenity --progress --pulsate --text "Converting RAW files to Jpeg"
21 Ways to Improve Your Creativity
It’s not just your camera, it’s your technique.
The letters mentioned here point that out:
Never forget that all the great photographs in history were made with more primitive camera equipment than you currently own.
Wedding Photography Inspiration
Someone posted a link to their first wedding job to the Canon EOS forum on dpreview.
The Wedding Photojournalist Assoc. was suggested later as a source of inspiration because those photos are so important to the client, they have to be perfect!
Skateboarder

Skateboarder Flying Through The Air
This is only one of many shots I took today. I’ll post more over the next few days including photos of the Mini Marathon too!
Later.. This image was selected as photo of the day at Digital Photography Blog!
Converting RAW to Jpeg in Linux
Dcraw is an amazing open source app that decodes many RAW formats to a more usable format for computer manipulation. It’s used by many commercial programs including Google’s Picassa!
It outputs pnm files, but with a little command line magic it can be used to convert a directory of RAW files to Jpeg.
Canon cameras produce RAW files with the extension “.cr2” so:
for i in *.cr2; do dcraw -c -a -n -h $i | ppmtojpeg > `basename $i cr2`jpg; echo $i done; done
This produces low quality jpeg images alongside your RAW images which makes it useful when browsing the directory with a file manager that doesn’t understand RAW.
You could have the camera produce the low quality jpeg images but why sacrifice the space on your media card?
It goes without saying that this will work on any UNIX platform that Dcraw supports!
Cork Ladies Mini Marathon Tomorrow
The Ladies mini marathon is to take place tomorrow at 2pm. Last year it started from Grand Parade so I presume it’ll start there again. I’ll be there at 1, who else is going? Photo.net has a few related articles:
Beautify a Face
Here’s a 7 part tutorial on touching up a portrait. Must read later.
What I Know About Photographing Strangers, Part One
Looks like I’m not the only one who shies away from the confrontation of street photography. It is hard to do!