This Flickr: Technique discussion talks about blending two exposures to maximise highlights and shadows.
It’s a simple but very effective technique, and of course if you use RAW files then you’ll already have an advantage over Jpeg.
Tag Archives: Photography
"Us" in Ireland
Ray D’Arcy who presents a show on Today FM wants everyone to take photos next Saturday! The photos will be collected and printed in a book titled, “Us” with all proceeds going to charity. The book will capture a snapshot of Irish society that day.
To submit your photos, email them to us @ todayfm.com on Saturday. Photos will not be accepted before that date but I think they will accept contributions afterwards because not everyone has access to a computer at the weekend.
They’re targeting the mobile phone brigade too, and I’m sure Vodafone, O2, Meteor and 3 and ringing their hands in glee at the prospect of so much gprs data being transmitted across their expensive networks!
One issue I haven’t heard mentioned is that of model release forms. A release form is required if a photo is to be published commercially (although news items differ I think?). I emailed them about an hour ago but it was near the end of the show. Hopefully they’ll respond tomorrow.
I’ll be out taking shots on Saturday around Cork City, and perhaps elsewhere. I’d love to have a photo published! 🙂
Later… looks like they ignored my email and text about model release forms. Hope they don’t get into trouble over that.
Anatomy of a Photograph
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.
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:


